전체 글239 프로메테우스&그라파나로 인증서 체크 배경 지식 https://myinbox.tistory.com/261 1. 새로운 룰 추가 2. 2번 Define query and alert condition A항목 > code 모드로 전환 > 아래 예시처럼 변경(probe_ssl_earliest_cert_expiry{instance="https://www.text.com/"} - time()) / 3600 / 24 3. B항목은 Math 로 변경 > Set as alert condition 클릭 > 아래 처럼 입력 (30일 미만시 알림)$A --- https://promlabs.com/blog/2024/02/06/monitoring-tls-endpoint-certificate-expiration-with-prometheus/ 2024. 10. 30. pymsteams 용 팀즈 웹훅 셋팅 https://github.com/DependencyTrack/dependency-track/issues/3953 MS Teams is retiring webhooks - Power Automate workflows is the new black · Issue #3953 · DependencyTrack/dependency-trackCurrent Behavior M$ is retiring the classic webhooks and you'll have to use Power Automate workflows instead. The linked page doesn't have too many details about the transition so I thought it'd be...github.com위 .. 2024. 10. 30. 프로메테우스&그라파나로 업타임 체크 1사전 조건 : https://myinbox.tistory.com/258 프로메테우스&그라파나 설치A PC (감시해야 하는 대상) * 수집기 설치docker run -d --name node-exporter \ --net="host" \ --pid="host" \ -v "/:/host:ro,rslave" \ quay.io/prometheus/node-exporter:latest \ --path.rootfs=/hostB PC (모니터링 도구 설치) * Node Exportermyinbox.tistory.com 2현재 작업 디렉토리의 /prometheus 경로에 blackbox.yml 작성modules: http_2xx: prober: http http: preferred_ip_pro.. 2024. 10. 23. Statping-ng (사이트 업타임 체크) 원래는 업타임쿠마를 사용했는데 몇가지 문제가 있었음- 팀즈 알림이 빈값으로 전송 (웹훅 설정 문제일 수 있음)- 성능 및 안정성 불안 그래서 아래 도구로 대체함go 언어로 만들어 가볍다고 한다 https://statping-ng.github.io/ 설치docker run -d -p 8080:8080 --restart always --name statping adamboutcher/statping-ng Webhook Outgoing Request 설정 성공{ "id": "{{.Service.Id}}", "online": true, "text": "{{.Service.Domain}} : {{.Service.LastStatusCode}}"} 실패{ "id": "{{.Service.Id}}", "on.. 2024. 10. 21. langflow 로 RAG 챗봇 만들기 로컬 환경에 Ollama 설치되었다고 가정 1. 설치 : https://myinbox.tistory.com/2572. 새 프로젝트 > Vector Store RAG3. Astra DB 를 Chroma DB로 변경 > Persist Directory에 임의값 입력4. OpenAI를 Ollama로 변경5. 우측 하단 API 클릭 > HTML과 연동하기 --- File 변경 사항 발생시1. Chroma DB의 Persist Directory 넘버링 수치 1증가 (2개 개체 모두)2. Split Text와 연결된 Chroma DB의 재생 버튼 클릭 --- 10B 이하 공개 모델 중에서는 Gemma2가 한국어 성능이 좋음https://www.reddit.com/r/LocalLLaMA/comments/1g4n8e.. 2024. 10. 18. 프로메테우스&그라파나 설치 A PC (감시해야 하는 대상) * 수집기 설치docker run -d --name node-exporter \ --net="host" \ --pid="host" \ -v "/:/host:ro,rslave" \ quay.io/prometheus/node-exporter:latest \ --path.rootfs=/hostB PC (모니터링 도구 설치) * Node Exporter 실행 확인 A_PC_IP:9100 으로 접속 * prometheus.yml 작성global: scrape_interval: 1m # 기본 스크래핑 간격scrape_configs: # Prometheus 서버 자체를 모니터링하기 위한 설정 # - job_name: 'prometheus' # static_confi.. 2024. 10. 15. langflow 도커 설치 version: '3.8'services: langflow: image: langflowai/langflow:latest container_name: langflow environment: - LANGFLOW_AUTO_LOGIN=False - LANGFLOW_SUPERUSER=admin - LANGFLOW_SUPERUSER_PASSWORD=securepassword - LANGFLOW_SECRET_KEY=randomly_generated_secure_key ports: - "7860:7860" restart: unless-stopped---- https://docs.langflow.org/configuration-authentica.. 2024. 9. 30. 랭체인 시도해보기 외부 서버에 ollama가 설치되었다고 가정 가장 단순한 방법from langchain_community.llms import Ollamallm = Ollama(base_url="http://192.168.10.12:11434", model="gemma2:9b-instruct-q4_K_M")str = llm.invoke("반가워")print(str) 답변을 스트리밍으로 보기from langchain.callbacks.manager import CallbackManagerfrom langchain.callbacks.streaming_stdout import StreamingStdOutCallbackHandlerfrom langchain_community.llms.ollama import Ollamallm.. 2024. 8. 21. [splunk] 리텐션 - 월별 코호트 https://docs.holistics.io/docs/charts/cohort-retention샘플로 아래와 같은 데이터가 있다고 하자reg_dateuser_cntv1v2v3v4v5v6v7v8v9v10v11v122024-01-03300120908073645551000002024-01-0420013011510290827871000002024-01-051901201009286707160000002024-01-06180119108958575606300000 reg_date는 구독한 날이고 user_cnt는 해당 일의 신규 구독자 수다v1~v12는 신규 구독자가 n개월 후 몇명 잔류했는지의 수치다 | eval reg_month=strftime(reg_date, "%Y-%m") | foreach * [ .. 2024. 8. 21. 맥 ollama api 외부 오픈 OLLAMA_HOST=0.0.0.0 ollama serve 사전에 위와 같은 명령어로 실행 필요https://github.com/ollama/ollama/issues/703#issuecomment-1951444576 Allow listening on all local interfaces · Issue #703 · ollama/ollamaThis means not loopback but all other private networks Makes it unusable in containers and configs with proxies in front.github.comhttps://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-configure-olla.. 2024. 7. 23. 스플렁크 30일 간격 리스트 만들기 (makeresults) | makeresults count=12 | streamstats count AS row | eval mydate=strptime("2024-07-22", "%Y-%m-%d") | eval date=strftime(relative_time(mydate, "+" . (row - 1) * 30 . "d"), "%Y-%m-%d") | table date | sort + date 2024. 7. 22. 우분투 서버에서 ollama 체험해보기 사전 조건 : 도커 설치docker run -d -v ollama:/root/.ollama -p 11434:11434 --name ollama ollama/ollamadocker exec -it ollama bashollama run gemma:2b 2024. 6. 26. 이전 1 2 3 4 ··· 20 다음