You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cAdvisor supports exporting stats to [statsd](https://github.com/etsy/statsd). To use statsd, you need to pass some additional flags to cAdvisor telling it where to find statsd:
4
+
5
+
Set the storage driver as statsd.
6
+
7
+
```
8
+
-storage_driver=statsd
9
+
```
10
+
11
+
Specify what statsd instance to push data to:
12
+
13
+
```
14
+
# The *ip:port* of the instance. Default is 'localhost:8086'
15
+
-storage_driver_host=ip:port
16
+
```
17
+
18
+
# Examples
19
+
20
+
The easiest way to get up an running is to start the cadvisor binary with the `--storage_driver` and `--storage_driver_host` flags.
0 commit comments