summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5d4ef81)
raw | patch | inline | side by side (parent: 5d4ef81)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 13 Apr 2008 08:37:45 +0000 (10:37 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 13 Apr 2008 08:37:45 +0000 (10:37 +0200) |
Also corrected a typo in src/collectd.conf.in.
src/collectd.conf.in | patch | blob | history | |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.in b/src/collectd.conf.in
index 281a70f696862fc7c32a159674ced66b3c1a0c07..8a8e633c8cd11c508a1f27e154227202dee2fd23 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
@BUILD_PLUGIN_SYSLOG_TRUE@LoadPlugin syslog
@BUILD_PLUGIN_TAPE_TRUE@LoadPlugin tape
@BUILD_PLUGIN_TCPCONNS_TRUE@LoadPlugin tcpconns
-@BUILD_PLUGIN_TEAMSPEAK2@LoadPlugin teamspeak2
+@BUILD_PLUGIN_TEAMSPEAK2_TRUE@LoadPlugin teamspeak2
@BUILD_PLUGIN_UNIXSOCK_TRUE@LoadPlugin unixsock
@BUILD_PLUGIN_USERS_TRUE@LoadPlugin users
@BUILD_PLUGIN_UUID_TRUE@LoadPlugin uuid
#<Plugin teamspeak2>
# Host "127.0.0.1"
-# Port 51234
-# Server 8767
+# Port "51234"
+# Server "8767"
#</Plugin>
#<Plugin unixsock>
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 8b6f2bf982a1f765571b4a58eee3c248d5309f63..e94d18a95822dad971ab88dbd8e9fa01513eaaaa 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
The C<teamspeak2 plugin> connects to the query port of a teamspeak2 server and
polls interesting global and virtual server data. The plugin can query only one
-physical server but unlimited virtual servers. You can use the following options
-to configure it:
+physical server but unlimited virtual servers. You can use the following
+options to configure it:
=over 4
=item B<Port> I<port>
-The query port of the physical server.
-Default: 51234
+The query port of the physical server. This needs to be a string.
+Default: "51234"
=item B<Server> I<port>
This option has to be added once for every virtual server the plugin should
query. If you want to query the virtual server on port 8767 this is what the
option would look like:
-Server 8767
+
+ Server "8767"
+
+This option, although numeric, needs to be a string, i.E<nbsp>e. you B<must>
+use quotes around it! If no such statement is given only global information
+will be collected.
=head2 Plugin C<tcpconns>