Updated README - mentioned network stats and included /sys as a mount for cadvisor in docker.
This commit is contained in:
parent
ba041ddf65
commit
cee5645694
@ -1,6 +1,6 @@
|
|||||||
# cAdvisor
|
# cAdvisor
|
||||||
|
|
||||||
cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers. It is a running daemon that collects, aggregates, processes, and exports information about running containers. Specifically, for each container it keeps resource isolation parameters, historical resource usage, and histograms of complete historical resource usage. This data is exported by container and machine-wide.
|
cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers. It is a running daemon that collects, aggregates, processes, and exports information about running containers. Specifically, for each container it keeps resource isolation parameters, historical resource usage, histograms of complete historical resource usage and network statistics. This data is exported by container and machine-wide.
|
||||||
|
|
||||||
cAdvisor currently supports lmctfy containers as well as Docker containers (those that use the default libcontainer execdriver). Other container backends can also be added. cAdvisor's container abstraction is based on lmctfy's so containers are inherently nested hierarchically.
|
cAdvisor currently supports lmctfy containers as well as Docker containers (those that use the default libcontainer execdriver). Other container backends can also be added. cAdvisor's container abstraction is based on lmctfy's so containers are inherently nested hierarchically.
|
||||||
|
|
||||||
@ -13,10 +13,11 @@ To quickly tryout cAdvisor on your machine with Docker (version 0.11 or above),
|
|||||||
```
|
```
|
||||||
sudo docker run \
|
sudo docker run \
|
||||||
--volume=/var/run:/var/run:rw \
|
--volume=/var/run:/var/run:rw \
|
||||||
--volume=/sys/fs/cgroup/:/sys/fs/cgroup:ro \
|
--volume=/sys:/sys:ro \
|
||||||
--volume=/var/lib/docker/:/var/lib/docker:ro \
|
--volume=/var/lib/docker/:/var/lib/docker:ro \
|
||||||
--publish=8080:8080 \
|
--publish=8080:8080 \
|
||||||
--detach=true \
|
--detach=true \
|
||||||
|
--name=cadvisor \
|
||||||
google/cadvisor:latest
|
google/cadvisor:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user