Go to file
2015-05-20 03:19:56 +00:00
api Add an api to support ps/top. 2015-05-12 00:06:47 +00:00
client Added container_name field to event API 2015-04-15 16:51:15 -07:00
collector Collectors export metrics from Collect(). 2015-05-11 12:26:51 -07:00
container Add manager methods to get docker status and images. 2015-05-13 22:07:09 +00:00
deploy Revert back to progrium/busybox. 2015-03-19 08:49:50 -07:00
docs update documentation for CentOS 7 2015-05-08 11:12:12 +10:00
events Fix handling of time ranges in timed store. 2015-05-07 16:44:22 +00:00
fs Add 'bytes available' to fs info. 2015-05-11 19:27:40 +00:00
Godeps Add the support for redis in cAdvisor's storage 2015-05-13 00:03:14 -04:00
healthz Refactor and centralize HTTP registration. 2015-03-10 18:00:10 -07:00
hooks Verify and fix error message nit :) 2015-01-14 01:15:13 +00:00
http Return error if can't register digest handler 2015-04-07 08:43:27 -07:00
info Add cgroup info and links to the process list on root page. 2015-05-20 03:19:56 +00:00
integration Replace gcutil with gcloud usage 2015-05-07 08:12:12 -07:00
manager Add cgroup info and links to the process list on root page. 2015-05-20 03:19:56 +00:00
metrics Clean up code around Prometheus metrics, more DRY. 2015-03-13 17:00:07 +01:00
pages Add cgroup info and links to the process list on root page. 2015-05-20 03:19:56 +00:00
storage Add the support for redis in cAdvisor's storage 2015-05-13 00:03:14 -04:00
summary Lowering log levels. 2015-04-13 15:05:41 -07:00
utils Merge pull request #695 from rjnagal/docker 2015-05-07 11:02:04 -07:00
validate Report status of hierarchical memory accounting in validate output. 2015-03-02 06:48:01 +00:00
version cAdvisor 0.13.0 2015-05-01 13:59:39 -07:00
.gitignore Re-adding .gitignore. 2015-02-09 15:16:45 -08:00
.travis.yml Add travis check for go files boilerplate. 2015-01-09 19:39:56 +00:00
AUTHORS Remove mention of contributors file. We don't have one. 2014-12-30 17:16:46 +00:00
cadvisor.go Provide cadvisor stats as prometheus metrics 2015-03-11 20:51:06 +01:00
CHANGELOG.md cAdvisor 0.13.0 2015-05-01 13:59:39 -07:00
CONTRIBUTING.md Add CONTRIBUTING.md 2014-06-10 13:09:14 -07:00
LICENSE Migrating cAdvisor code from lmctfy 2014-06-09 12:12:07 -07:00
logo.png Adding logo to the README 2014-06-09 15:54:45 -07:00
README.md Fix build documentation and clarify readme. 2015-03-30 16:16:01 -07:00
storagedriver.go Add the support for redis in cAdvisor's storage 2015-05-13 00:03:14 -04:00
test.htdigest Added HTTP Auth and HTTP Digest authentication #302 2014-12-11 17:25:43 +05:30
test.htpasswd Added HTTP Auth and HTTP Digest authentication #302 2014-12-11 17:25:43 +05:30

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, histograms of complete historical resource usage and network statistics. This data is exported by container and machine-wide.

cAdvisor has native support for Docker containers and should support just about any other container type out of the box. We strive for support accross the board so feel free to open an issue if that is not the case. cAdvisor's container abstraction is based on lmctfy's so containers are inherently nested hierarchically.

cAdvisor

Quick Start: Running cAdvisor in a Docker Container

To quickly tryout cAdvisor on your machine with Docker, we have a Docker image that includes everything you need to get started. You can run a single cAdvisor to monitor the whole machine. Simply run:

sudo docker run \
  --volume=/:/rootfs:ro \
  --volume=/var/run:/var/run:rw \
  --volume=/sys:/sys:ro \
  --volume=/var/lib/docker/:/var/lib/docker:ro \
  --publish=8080:8080 \
  --detach=true \
  --name=cadvisor \
  google/cadvisor:latest

cAdvisor is now running (in the background) on http://localhost:8080. The setup includes directories with Docker state cAdvisor needs to observe.

Note: If you're running on CentOS, RHEL, or are using LXC take a look at our running instructions.

We have detailed instructions on running cAdvisor standalone outside of Docker. cAdvisor running options may also be interesting for advanced usecases. If you want to build your own cAdvisor Docker image see our deployment page.

Building and Testing

See the more detailed instructions in the build page. This includes instructions for building and deploying the cAdvisor Docker image.

InfluxDB and Cluster Monitoring

cAdvisor supports exporting stats to InfluxDB. See the documentation for more information and examples.

cAdvisor also exposes container stats as Prometheus metrics. See the documentation for more information.

Heapster enables cluster wide monitoring of containers using cAdvisor.

Web UI

cAdvisor exposes a web UI at its port:

http://<hostname>:<port>/

See the documentation for more details.

Remote REST API & Clients

cAdvisor exposes its raw and processed stats via a versioned remote REST API. See the API's documentation for more information.

There is also an official Go client implementation in the client directory. See the documentation for more information.

Roadmap

cAdvisor aims to improve the resource usage and performance characteristics of running containers. Today, we gather and expose this information to users. In our roadmap:

  • Advise on the performance of a container (e.g.: when it is being negatively affected by another, when it is not receiving the resources it requires, etc)
  • Auto-tune the performance of the container based on previous advise.
  • Provide usage prediction to cluster schedulers and orchestration layers.

Community

Contributions, questions, and comments are all welcomed and encouraged! cAdvisor developers hang out in #google-containers room on freenode.net. We also have the google-containers Google Groups mailing list.