summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b21e598)
raw | patch | inline | side by side (parent: b21e598)
author | Florian Forster <octo@collectd.org> | |
Sun, 11 Mar 2012 12:04:13 +0000 (13:04 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Sun, 11 Mar 2012 12:04:13 +0000 (13:04 +0100) |
The example given was confusing since it didn't make it clear enough, that only
one "Server" stanza is required.
Resolves GitHub issue #19.
one "Server" stanza is required.
Resolves GitHub issue #19.
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 62374b625cb204ab9aa3f6dc9c6a8f73fa8c5e37..74249d7f7ff3008185d11fef57a3af70bb5dd8d7 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
multicast group is C<239.192.74.66>. The default I<UDP> port is B<25826>.
Both, B<Server> and B<Listen> can be used as single option or as block. When
-used as block, given options are valid for this socket only. For example:
+used as block, given options are valid for this socket only. The following
+example will export the metrics twice: Once to an "internal" server (without
+encryption and signing) and one to an external server (with cryptographic
+signature):
<Plugin "network">
+ # Export to an internal server
+ # (demonstrates usage without additional options)
Server "collectd.internal.tld"
+
+ # Export to an external server
+ # (demonstrates usage with signature options)
<Server "collectd.external.tld">
SecurityLevel "sign"
Username "myhostname"