1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-31 12:53:34 +02:00
tldr/pages/linux/collectd.md

33 lines
517 B
Markdown
Raw Normal View History

2019-05-28 00:52:36 +01:00
# collectd
> System statistics collection daemon.
2025-08-23 02:00:03 -07:00
> More information: <https://manned.org/collectd>.
2019-05-28 00:52:36 +01:00
- Test the configuration file and then exit:
`collectd -t`
- Test plugin data collection functionality and then exit:
`collectd -T`
- Start `collectd`:
2019-05-28 00:52:36 +01:00
`collectd`
- Specify a custom configuration file location:
`collectd -C {{path/to/file}}`
- Specify a custom PID file location:
`collectd -P {{path/to/file}}`
- Don't fork into the background:
`collectd -f`
- Display help and version:
`collectd -h`