From cee5645694027208aeaf9f1062a8144897358493 Mon Sep 17 00:00:00 2001 From: Vishnu Kannan Date: Thu, 24 Jul 2014 20:59:33 +0000 Subject: [PATCH] Updated README - mentioned network stats and included /sys as a mount for cadvisor in docker. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 003c1f11..663e9d60 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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. @@ -13,10 +13,11 @@ To quickly tryout cAdvisor on your machine with Docker (version 0.11 or above), ``` sudo docker run \ --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 \ --publish=8080:8080 \ --detach=true \ + --name=cadvisor \ google/cadvisor:latest ```