From 251cb0d26c18746c6380a7179e0755f8ec72a72a Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 28 May 2019 00:52:36 +0100 Subject: [PATCH] collectd: add page (#3055) --- pages/linux/collectd.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/linux/collectd.md diff --git a/pages/linux/collectd.md b/pages/linux/collectd.md new file mode 100644 index 000000000..953d5c381 --- /dev/null +++ b/pages/linux/collectd.md @@ -0,0 +1,32 @@ +# collectd + +> System statistics collection daemon. +> Homepage: . + +- Show usage help, including the program version: + +`collectd -h` + +- 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`