summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4091500)
raw | patch | inline | side by side (parent: 4091500)
author | Florian Forster <octo@collectd.org> | |
Wed, 29 Feb 2012 22:09:58 +0000 (23:09 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Wed, 29 Feb 2012 22:09:58 +0000 (23:09 +0100) |
Resolves GitHub issue #37.
Change-Id: I9b2ff533003e379f0eb81de256a946fdf8851661
Change-Id: I9b2ff533003e379f0eb81de256a946fdf8851661
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 96b905681a9ca52a4afbde3f278e676583b8fddc..139919f4470fa994494e143f5a26cdd0457e6097 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
=back
+=head2 Plugin C<write_mongodb>
+
+The I<write_mongodb plugin> will send values to I<MongoDB>, a schema-less
+NoSQL database.
+
+B<Synopsis:>
+
+ <Plugin "write_mongodb">
+ <Node "default">
+ Host "localhost"
+ Port "27017"
+ Timeout 1000
+ StoreRates true
+ </Node>
+ </Plugin>
+
+The plugin can send values to multiple instances of I<MongoDB> by specifying
+one B<Node> block for each instance. Within the B<Node> blocks, the following
+options are available:
+
+=over 4
+
+=item B<Host> I<Address>
+
+Hostname or address to connect to. Defaults to C<localhost>.
+
+=item B<Port> I<Service>
+
+Service name or port number to connect to. Defaults to C<27017>.
+
+=item B<Timeout> I<Timeout>
+
+Set the timeout for each operation on I<MongoDB> to I<Timeout> milliseconds.
+Setting this option to zero means no timeout, which is the default.
+
+=item B<StoreRates> B<false>|B<true>
+
+If set to B<true> (the default), convert counter values to rates. If set to
+B<false> counter values are stored as is, i.e. as an increasing integer
+number.
+
+=back
+
=head2 Plugin C<write_http>
This output plugin submits values to an http server by POST them using the