summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9d5f2bf)
raw | patch | inline | side by side (parent: 9d5f2bf)
author | Sebastian Harl <sh@tokkee.org> | |
Thu, 3 Jun 2010 11:45:24 +0000 (13:45 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Thu, 3 Jun 2010 11:46:49 +0000 (13:46 +0200) |
* curl_xml
* modbus (disabled; libmodbus is not available)
* pinba
* modbus (disabled; libmodbus is not available)
* pinba
debian/changelog | patch | blob | history | |
debian/collectd.conf | patch | blob | history | |
debian/control | patch | blob | history | |
debian/rules | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 2e4abed21e07114c55a31c17795cd7bb06907341..48b15a41eb2d9587144fe3908ade317080443f39 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
collectd (4.10.0-1) unstable; urgency=low
- * New upstream release.
+ * New upstream release:
+ New plugins:
+ - Parse XML data: curl_xml
+ - Parse values from Modbus/TCP enabled devices: modbus (disabled in
+ Debian; libmodbus is not available)
+ - Timing values from Pinba: pinba
- -- Sebastian Harl <tokkee@debian.org> Thu, 03 Jun 2010 12:58:27 +0200
+ -- Sebastian Harl <tokkee@debian.org> Thu, 03 Jun 2010 13:36:01 +0200
collectd (4.9.1-2) unstable; urgency=low
diff --git a/debian/collectd.conf b/debian/collectd.conf
index a3319850ef642d6063c0359babf5a5b73a0010e9..5eea34922200cfaa905b57792eb7e79d16e609a8 100644 (file)
--- a/debian/collectd.conf
+++ b/debian/collectd.conf
#LoadPlugin csv
#LoadPlugin curl
#LoadPlugin curl_json
+#LoadPlugin curl_xml
#LoadPlugin dbi
LoadPlugin df
LoadPlugin disk
#LoadPlugin olsrd
#LoadPlugin openvpn
#LoadPlugin perl
+#LoadPlugin pinba
#LoadPlugin ping
#LoadPlugin postgresql
#LoadPlugin powerdns
# </URL>
#</Plugin>
+#<Plugin "curl_xml">
+# <URL "http://localhost/stats.xml">
+# Host "my_host"
+# Instance "some_instance"
+# User "collectd"
+# Password "thaiNg0I"
+# VerifyPeer true
+# VerifyHost true
+# CACert "/path/to/ca.crt"
+#
+# <XPath "table[@id=\"magic_level\"]/tr">
+# Type "magic_level"
+# InstancePrefix "prefix-"
+# InstanceFrom "td[1]"
+# ValuesFrom "td[2]/span[@class=\"level\"]"
+# </XPath>
+# </URL>
+#</Plugin>
+
#<Plugin dbi>
# <Query "num_of_customers">
# Statement "SELECT 'customers' AS c_key, COUNT(*) AS c_value \
# </Plugin>
#</Plugin>
+#<Plugin pinba>
+# Address "::0"
+# Port "30002"
+# <View "name">
+# Host "host name"
+# Server "server name"
+# Script "script name"
+# <View>
+#</Plugin>
+
#<Plugin ping>
# Host "host.foo.bar"
# Host "host.baz.qux"
diff --git a/debian/control b/debian/control
index 054cea90a05a67c249d3c725a560cf07421c8916..d8308cce68615eab76b460e586a651c42ea40070 100644 (file)
--- a/debian/control
+++ b/debian/control
* output to comma separated values (CSV) files: csv
* parse statistics from websites: curl
* parse JSON files: curl_json
+ * parse XML data: curl_xml
* query data from a relational database: dbi
* disk space usage: df
* disk and partition throughput: disk
* OpenVPN traffic and compression statistics: openvpn
* OpenVZ statistics: OpenVZ (Perl based plugin)
* embedded Perl interpreter: perl
+ * timing values from Pinba: pinba
* network latency statistics: ping
* PostgreSQL database statistics: postgresql
* PowerDNS name server statistics: powerdns
diff --git a/debian/rules b/debian/rules
index 94a80455f49d6eaa4b8212a05a2693b9d5228db6..e9487ac8771f8499533922519a0094f2c70f9363 100755 (executable)
--- a/debian/rules
+++ b/debian/rules
# These plugins do not provide any functionality under Linux.
confflags += --disable-apple_sensors --disable-tape
+# libmodbus is required for the modbus plugin.
+confflags += --disable-modbus
+
# libnetapp is required for the netapp plugin.
confflags += --disable-netapp