grafana
-
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 기초 공부 내역Computer Science/Monitoring 2023. 3. 23. 12:09
Prometheus 가 다른 모니터링 도구와 큰 차이점 중 하나는 바로 Pull 방식으로 진행된다는 것이다. 기존의 다른 모니터링 도구 ( New Relic, DataDog, Pinpoint ) 는 이 클라이언트가 메트릭을 수집해서 중앙서버로 보내면 서버가 모니터링 상태를 보여주는 방식인데 Prometheus는 서버가 클라이언트에 접속해서 데이터를 가져오는 방식이다. 즉 모니터링 서비스를 위해서 각 서버마다 클라이언트가 설치되어야 함은 동일하지만 기존의 모니터링 도구들은 이 클라이언트가 중앙서버로 데이터를 전송한다면 Prometheus는 중앙에서 각 클라이언트에 접속해서 데이터를 가져온다. 이렇다보니 꼭 prometheus 서버가 아니더라도 클라이언트에서 정보를 가져올 수 있다. Prometheus 의 ..