Computer Science/Monitoring
-
Prometheus + Grafana 로 k8s 모니터링 하기Computer Science/Monitoring 2023. 8. 15. 05:02
1. Prometheus 설치 2. Grafana 설치 3. Grafana와 Prometheus 연동하기 1. Prometheus 설치 https://github.com/prometheus-community/helm-charts GitHub - prometheus-community/helm-charts: Prometheus community Helm charts Prometheus community Helm charts. Contribute to prometheus-community/helm-charts development by creating an account on GitHub. github.com 우선 monitoring namespace에서 진행하려고 하기에 namespace를 생성해준다. ku..
-
Prometheus - ExporterComputer Science/Monitoring 2023. 4. 16. 15:26
Exporter의 종류와 수집하는 것들 cAdvisor 컨테이너 관련 모니터링 prefix에 container가 붙는다 node-exporter 노드 관련 모니터링 sys, proc 디렉토리를 모니터링함 prefix에 node가 붙는다 kube-state-metrics 쿠버네티스 오프젝트 모니터링 deployment, demonset 등 prefix에 kube 가 붙는다 application에서 노출을 시킬때 추가로 exporter를 이용하여 노출시킨다 adapter를 붙이는데 sidecar라고 많이 부른다 각자에 맞는 prefix가 존재한다. app이 자체로 노출시키고 있는 경우도 있다. CockroachDB, Envoy, MetalLB, Kong, Zipkin 같은 경우 이미 메트릭이 노출되도록 되어..
-
Prometheus - Web UI 메뉴 간략 설명Computer Science/Monitoring 2023. 4. 16. 15:20
기타 모니터링 서비스들은 무엇이 있는가 DATADOG, New Relic - ( PIXIE ( 오픈소스 ) ), dynatrace 유료 및 PIXIE는 불편함. ZABBIX, Sentry, Nagios, Scouter k8s 환경에서는 부족하거나 불편함. Prometheus Status 에서 주의 할만한 것들 Runtime & Build Infromation Build Version Storage retention 데이터 보관기간 TSDB Status 어느 데이터가 많은지 간략하게 보여주는 곳 Command-Line Flags 옵션들의 값을 확인가능하다. Configuration 설정한 값을 확인가능하다. Rules Recording 및 Alert 관련 Rule Targets Configuration에서..
-
Helm을 이용하여 기본 Prometheus 띄워보기Computer Science/Monitoring 2023. 3. 23. 15:08
artifacthub.io 에서 prometheus의 helm chart를 다운받아 진행하였다. https://artifacthub.io/packages/helm/prometheus-community/prometheus prometheus 20.0.1 · prometheus/prometheus-community Prometheus is a monitoring system and time series database. artifacthub.io helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm repo update pelm repo 를 다운받았고 바로 실행하였다. helm install prom..
-
Prometheus 기초 공부 내역Computer Science/Monitoring 2023. 3. 23. 12:09
Prometheus 가 다른 모니터링 도구와 큰 차이점 중 하나는 바로 Pull 방식으로 진행된다는 것이다. 기존의 다른 모니터링 도구 ( New Relic, DataDog, Pinpoint ) 는 이 클라이언트가 메트릭을 수집해서 중앙서버로 보내면 서버가 모니터링 상태를 보여주는 방식인데 Prometheus는 서버가 클라이언트에 접속해서 데이터를 가져오는 방식이다. 즉 모니터링 서비스를 위해서 각 서버마다 클라이언트가 설치되어야 함은 동일하지만 기존의 모니터링 도구들은 이 클라이언트가 중앙서버로 데이터를 전송한다면 Prometheus는 중앙에서 각 클라이언트에 접속해서 데이터를 가져온다. 이렇다보니 꼭 prometheus 서버가 아니더라도 클라이언트에서 정보를 가져올 수 있다. Prometheus 의 ..