mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-06 08:35:35 +02:00

Co-authored-by: Darío Hereñú <magallania@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
32 lines
529 B
Markdown
32 lines
529 B
Markdown
# collectd
|
|
|
|
> System statistics collection daemon.
|
|
> More information: <https://www.collectd.org/documentation/>.
|
|
|
|
- Test the configuration file and then exit:
|
|
|
|
`collectd -t`
|
|
|
|
- Test plugin data collection functionality and then exit:
|
|
|
|
`collectd -T`
|
|
|
|
- Start `collectd`:
|
|
|
|
`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`
|