aAdvisor 설치: 컨테이너 모니터링 :: 행복한 프로그래머

posted by 쁘로그램어 2018. 5. 16. 12:43

azure에서 cadvisor를 설치해보았다.


cAdvisor (Container Advisor)는 컨테이너 사용자에게 실행중인 컨테이너의 자원 사용 및 성능 정보를 모니터링 하는것이다.


# 컨테이너에서 cAdvisor 실행

$ sudo docker run \

  --volume=/:/rootfs:ro \

  --volume=/var/run:/var/run:rw \

  --volume=/sys:/sys:ro \

  --volume=/var/lib/docker/:/var/lib/docker:ro \

  --volume=/dev/disk/:/dev/disk:ro \

  --publish=8080:8080 \

  --detach=true \

  --name=cadvisor \

  google/cadvisor:latest


# cAdvisor Storage Plugins

* BigQuery. See the documentation for usage.

* ElasticSearch. See the documentation for usage and examples.

* InfluxDB. See the documentation for usage and examples.

* Kafka. See the documentation for usage.

* Prometheus. See the documentation for usage and examples.

* Redis

* StatsD

* stdout - write stats to standard output.


# dockerhub cadvisor

https://hub.docker.com/r/google/cadvisor/


# github cadvisor

https://github.com/google/cadvisor


# rest api

https://github.com/google/cadvisor/blob/master/docs/api.md


# 웹 접속

http:/{IP_ADDR}/containers/

'관심 기술 > docker' 카테고리의 다른 글

docker, Dockerfile cheat sheet  (0) 2018.05.17
cAdvisor REST API 테스트  (0) 2018.05.16
Ubuntu에서 docker-ce 설치  (0) 2018.05.16
docker ecosystem 정리 자료  (0) 2018.05.10
Dockerhub란?  (0) 2018.05.10