Cleanup cAdvisor storage docs

This commit is contained in:
Tim St. Clair 2016-05-04 19:41:07 -07:00
parent 85d2668128
commit a92834c8af
5 changed files with 16 additions and 8 deletions

View File

@ -32,15 +32,9 @@ We have detailed [instructions](docs/running.md#standalone) on running cAdvisor
See the more detailed instructions in the [build page](docs/development/build.md). This includes instructions for building and deploying the cAdvisor Docker image.
## InfluxDB and Cluster Monitoring
## Exporting stats
cAdvisor supports exporting stats to [InfluxDB](https://influxdb.com/). See the [documentation](docs/influxdb.md) for more information and examples.
cAdvisor also exposes container stats as [Prometheus](http://prometheus.io) metrics. See the [documentation](docs/prometheus.md) for more information.
cAdvisor also supports exporting stats to [ElasticSearch](https://www.elastic.co/). See the [documentation](docs/elasticsearch.md) for more information.
[Heapster](https://github.com/kubernetes/heapster) enables cluster wide monitoring of containers using cAdvisor.
cAdvisor supports exporting stats to various storage plugins. See the [documentation](docs/storage/README.md) for more details and examples.
## Web UI

14
docs/storage/README.md Normal file
View File

@ -0,0 +1,14 @@
# cAdvisor Storage Plugins
cAdvisor supports exporting stats to various storage driver plugins. To enable a storage driver, set the `-storage_driver` flag.
## Storage drivers
- [BigQuery](https://cloud.google.com/bigquery/). See the [documentation](../../storage/bigquery/README.md) for usage.
- [ElasticSearch](https://www.elastic.co/). See the [documentation](elasticsearch.md) for usage and examples.
- [InfluxDB](https://influxdb.com/). See the [documentation](influxdb.md) for usage and examples.
- [Kafka](http://kafka.apache.org/)
- [Prometheus](http://prometheus.io). See the [documentation](prometheus.md) for usage and examples.
- [Redis](http://redis.io/)
- [StatsD](https://github.com/etsy/statsd)
- `stdout` - write stats to standard output.