1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/collectd
2016-07-08 06:39:29 +08:00
..
collectd upate 2015-06-24 20:43:07 +08:00
docker-compose.yml update 2015-06-24 22:43:17 +08:00
Dockerfile add murmur 2016-07-08 06:39:29 +08:00
README.md update 2015-06-24 22:43:17 +08:00

collectd

collectd is a daemon which collects system performance statistics periodically and provides mechanisms to store the values in a variety of ways, for example in RRD files.

directory tree

~/fig/collectd/
├── collectd/
│   ├── collectd.conf
│   └── conf.d/
│       └── network.conf
└── docker-compose.yml

config files

collectd.conf

Hostname "localhost"

FQDNLookup false
Interval 10
Timeout 2
ReadThreads 5
WriteThreads 5

LoadPlugin cpu
LoadPlugin interface
LoadPlugin load
LoadPlugin memory

Include "/etc/collectd/conf.d/*.conf"

network.conf

LoadPlugin network

<Plugin "network">
  Server "influxdb" "25826"
</Plugin>

docker-compose.yml

collectd:
  image: vimagick/collectd
  volumes:
    - ./collectd:/etc/collectd
  pid: host
  net: host
  restart: always