Docker 기반으로 빠르게 구축하는 Prometheus-Grafana-Alertmanager 모니터링 스택
모니터링 네트워크 설정 및 Prometheus 배포
먼저, 컨테이너 간 통신을 위한 전용 네트워크를 생성하고, Prometheus 구성 파일을 준비합니다.
docker network create monitoring
mkdir -p /etc/prometheus
vim /etc/prometheus/prometheus.yml
이후 다음 명령어로 Prometheus 컨테이너를 실행합니다:
docker run -itd --name prometheus \
--net=monitoring \
-p 9090:90 ...
7월 28일 11:28에 게시됨
Longhorn, 엔터프라이즈급 클라우드 네이티브 컨테이너 분산 스토리지 - 모니터링(Prometheus+AlertManager+Grafana)
출처: Longhorn 1.1.2 공식 기술 매뉴얼
시리즈
Longhorn이란?
Longhorn 엔터프라이즈급 클라우드 네이티브 컨테이너 분산 스토리지 솔루션 설계 아키텍처 및 개념
Longhorn 엔터프라이즈급 클라우드 네이티브 컨테이너 분산 스토리지 - 배포篇
Longhorn 엔터프라이즈급 클라우드 네이티브 컨테이너 분산 스토리지 - 볼륨(Volume)과 노드(Node)
Longhorn, 엔터프라이즈급 ...
6월 24일 20:16에 게시됨