From 608d54d7288485be9b616de7fb8ea07a02e978b2 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 29 Feb 2012 23:09:58 +0100 Subject: [PATCH] collectd.conf(5): Add documentation for the write_mongodb plugin. Resolves GitHub issue #37. Change-Id: I9b2ff533003e379f0eb81de256a946fdf8851661 --- src/collectd.conf.pod | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 96b90568..139919f4 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -4882,6 +4882,49 @@ more than one DS. =back +=head2 Plugin C + +The I will send values to I, a schema-less +NoSQL database. + +B + + + + Host "localhost" + Port "27017" + Timeout 1000 + StoreRates true + + + +The plugin can send values to multiple instances of I by specifying +one B block for each instance. Within the B blocks, the following +options are available: + +=over 4 + +=item B I
+ +Hostname or address to connect to. Defaults to C. + +=item B I + +Service name or port number to connect to. Defaults to C<27017>. + +=item B I + +Set the timeout for each operation on I to I milliseconds. +Setting this option to zero means no timeout, which is the default. + +=item B B|B + +If set to B (the default), convert counter values to rates. If set to +B counter values are stored as is, i.e. as an increasing integer +number. + +=back + =head2 Plugin C This output plugin submits values to an http server by POST them using the -- 2.11.0