{"id":37092394,"url":"https://github.com/ncdc/cadvisor","last_synced_at":"2026-01-14T11:14:51.967Z","repository":{"id":57588033,"uuid":"50130837","full_name":"ncdc/cadvisor","owner":"ncdc","description":"Analyzes resource usage and performance characteristics of running containers.","archived":false,"fork":true,"pushed_at":"2017-05-30T18:10:21.000Z","size":24446,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-23T07:05:21.645Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"google/cadvisor","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ncdc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-21T19:20:52.000Z","updated_at":"2016-01-21T19:20:53.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ncdc/cadvisor","commit_stats":null,"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/ncdc/cadvisor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncdc%2Fcadvisor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncdc%2Fcadvisor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncdc%2Fcadvisor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncdc%2Fcadvisor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ncdc","download_url":"https://codeload.github.com/ncdc/cadvisor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ncdc%2Fcadvisor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28418049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T11:14:51.184Z","updated_at":"2026-01-14T11:14:51.958Z","avatar_url":"https://github.com/ncdc.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cAdvisor\n\ncAdvisor (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.\n\ncAdvisor has native support for [Docker](https://github.com/docker/docker) containers and should support just about any other container type out of the box. We strive for support across the board so feel free to open an issue if that is not the case. cAdvisor's container abstraction is based on [lmctfy](https://github.com/google/lmctfy)'s so containers are inherently nested hierarchically.\n\n![cAdvisor](logo.png \"cAdvisor\")\n\n#### Quick Start: Running cAdvisor in a Docker Container\n\nTo 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:\n\n```\nsudo docker run \\\n  --volume=/:/rootfs:ro \\\n  --volume=/var/run:/var/run:rw \\\n  --volume=/sys:/sys:ro \\\n  --volume=/var/lib/docker/:/var/lib/docker:ro \\\n  --publish=8080:8080 \\\n  --detach=true \\\n  --name=cadvisor \\\n  google/cadvisor:latest\n```\n\ncAdvisor is now running (in the background) on `http://localhost:8080`. The setup includes directories with Docker state cAdvisor needs to observe.\n\n**Note**: If you're running on CentOS, Fedora, RHEL, or are using LXC take a look at our [running instructions](docs/running.md).\n\nWe have detailed [instructions](docs/running.md#standalone) on running cAdvisor standalone outside of Docker. cAdvisor [running options](docs/runtime_options.md) may also be interesting for advanced usecases. If you want to build your own cAdvisor Docker image see our [deployment](docs/deploy.md) page.\n\n## Building and Testing\n\nSee the more detailed instructions in the [build page](docs/development/build.md). This includes instructions for building and deploying the cAdvisor Docker image.\n\n## Exporting stats\n\ncAdvisor supports exporting stats to various storage plugins. See the [documentation](docs/storage/README.md) for more details and examples.\n\n## Web UI\n\ncAdvisor exposes a web UI at its port:\n\n`http://\u003chostname\u003e:\u003cport\u003e/`\n\nSee the [documentation](docs/web.md) for more details.\n\n## Remote REST API \u0026 Clients\n\ncAdvisor exposes its raw and processed stats via a versioned remote REST API. See the API's [documentation](docs/api.md) for more information.\n\nThere is also an official Go client implementation in the [client](client/) directory. See the [documentation](docs/clients.md) for more information.\n\n## Roadmap\n\ncAdvisor aims to improve the resource usage and performance characteristics of running containers. Today, we gather and expose this information to users. In our roadmap:\n- 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)\n- Auto-tune the performance of the container based on previous advise.\n- Provide usage prediction to cluster schedulers and orchestration layers.\n\n## Community\n\nContributions, questions, and comments are all welcomed and encouraged! cAdvisor developers hang out on [Slack](https://kubernetes.slack.com) in the #sig-node channel (get an invitation [here](http://slack.kubernetes.io/)). We also have the [google-containers Google Groups mailing list](https://groups.google.com/forum/#!forum/google-containers).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fncdc%2Fcadvisor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fncdc%2Fcadvisor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fncdc%2Fcadvisor/lists"}