mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-27 23:46:33 +01:00
17 lines
311 B
Markdown
17 lines
311 B
Markdown
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.
|
|
|
|
## docker-compose.yml
|
|
|
|
```
|
|
collectd:
|
|
image: vimagick/collectd
|
|
volumes:
|
|
- /proc:/proc:ro
|
|
restart: always
|
|
```
|