Code

patches/postgresql_conf_fix.dpatch: Make sure "disk_io" doesn't return NULL.
[pkg-collectd.git] / debian / changelog
1 collectd (4.6.1-1) unstable; urgency=low
3   * New upstream release.
4     - Added a filter infrastructure based on "matches" and "targets".
5     New plugins:
6     - bind9 name-server and zone statistics: bind
7     - Parse statistics from websites: curl
8     - Query data from a relational database: dbi
9     - OpenVPN traffic and compression statistics: openvpn
10     - Query data from an Oracle database: oracle (disabled in Debian,
11       libclntsh is not available)
12     - Write data via the RRD accelerator daemon: rrdcached (disabled in
13       Debian, rrdclient support is not yet available)
14     New matches:
15     - Match values by their identifier based on regular expressions: regex
16     - Match values with an invalid timestamp: timediff
17     - Select values by their data sources' values: value
18     New targets:
19     - Create and dispatch a notification: notification
20     - Replace parts of an identifier using regular expressions: replace
21     - Set (overwrite) entire parts of an identifier: set
22   * Uploading to unstable, since Lenny has been released.
23   * New debconf template translations:
24     - vi.po, thanks to Clytie Siddall (Closes: #515872).
25   * debian/patches:
26     - Removed perl-uninitialized-var.dpatch - included upstream.
27   * debian/control:
28     - Added new binary packages libcollectdclient0 and libcollectdclient-dev
29       for the newly added client library.
30     - Added new binary package collectd-utils for optional utilities that pull
31       in additional dependencies. Currently, this only includes
32       collectd-nagios.
33     - Added libdbi0-dev to the build dependencies - this is required by the
34       dbi plugin.
35   * debian/rules:
36     - Use dh_install and *.install files to specify which package some file
37       belongs to.
38   * debian/libcollectdclient0.symbols:
39     - Added symbols file for libcollectdclient.
40   * debian/collectd.overrides:
41     - Override "spelling-error-in-description" for the apache plugin name -
42       all plugins are spelled lowercase.
43   * debian/patches/:
44     - Added postgresql_conf_fix.dpatch - upstream patch to fix the use of
45       deprecated configuration options and to make sure the "disk_io" query
46       does not return NULLs.
48  -- Sebastian Harl <sh@tokkee.org>  Mon, 09 Mar 2009 17:42:01 +0100
50 collectd (4.5.1-1) experimental; urgency=low
52   * New upstream release.
53     New plugins:
54     - Count the number of files in directories: filecount
55     - Send desktop notifications to a notification daemon: notify_desktop
56     - Send notification E-mails: notify_email
57     - One-wire sensors information: onewire (experimental, disabled in Debian)
58     - PostgreSQL database statistics: postgresql
59     - Linux ACPI thermal zone information: thermal (Closes: #492580)
60   * Uploading to experimental because of the Lenny freeze.
61   * debian/control:
62     - Added build dependency on libglib2.0-dev and libnotify-dev required by
63       the notify_desktop plugin.
64     - Added build dependency on libesmtp-dev required by the notify_email
65       plugin.
66     - Added build dependency on libpq-dev required by the postgresql plugin.
67     - Let collectd-dbg and collectd-dev depend on ${misc:Depends} - this is
68       required when using debhelper.
69   * debian/rules:
70     - Disabled onewire plugin - owfs is not yet available in Debian.
71     - Install contrib/snmp-probe-host.px to /usr/share/doc/collectd/examples/.
72     - Set CONFIGFILE to /etc/collectd/collectd.conf.
73   * debian/patches:
74     - Added perl-uninitialized-var.dpatch - upstream patch to fix an
75       uninitialized variable warning causing a FTBFS because of -Werror.
76     - Removed myplugin_strcpy.dpatch - applied upstream.
77     - Removed perl_deadlock.dpatch - included upstream.
78     - Removed memory_libstatgrab.dpatch - included upstream.
79     - Removed collectd_memleak.dpatch - included upstream.
80     - Removed snmp_memleak.dpatch - included upstream.
81     - Removed memcached_fdleak.dpatch - included upstream.
82     - Removed memcached_timeout.dpatch - included upstream.
83     - Removed pod-errors.dpatch - included upstream.
84   * debian/collectd.overrides:
85     - Override "spelling-error-in-description" for the postgresql plugin name
86       - all plugins are spelled lowercase.
87   * debian/collectd.init.d:
88     - Do not restart collectd if the configuration test fails.
90  -- Sebastian Harl <sh@tokkee.org>  Fri, 12 Dec 2008 10:09:48 +0100
92 collectd (4.4.2-3) unstable; urgency=low
94   * New debconf template translation:
95     - nl.po, thanks to Eric Spreen (Closes: #502204).
96     - sv.po, thanks to Martin Bagge (Closes: #504248).
97   * debian/patches:
98     - Added pod-errors.dpatch to fix some minor POD errors.
99   * debian/rules:
100     - Remove generated manpages in the clean target to avoid cluttering the
101       source diff with the rebuilt manpages.
102   * debian/collectd.conf:
103     - Fixed a wrong type used in the "tail" plugin example.
105  -- Sebastian Harl <sh@tokkee.org>  Sat, 06 Dec 2008 16:53:25 +0100
107 collectd (4.4.2-2) unstable; urgency=low
109   * Removed the work around for #474087 (broken openipmi .pc files) introduced
110     in 4.4.1-1 and instead build depend on libopenipmi-dev (>= 2.0.14-1~)
111     which includes fixed .pc files. This fixes an undefined symbol error when
112     loading the ipmi plugin caused by that work around (Closes: #494665).
113   * debian/collectd.init.d:
114     - The "status" command now exits with 1 if collectd is not running.
115     - Do not suppress output when checking the configuration with the -t
116       command line option. This will also show errors that don't cause
117       collectd to abort, e.g. failure to load plugins (Closes: #499232).
118   * debian/control:
119     - Added librrd-dev as the preferred option to the librrd2-dev build
120       dependency - the latter one is a virtual package since rrdtool 1.3.
121   * Added debian/patches/perl_deadlock.dpatch - upstream patch to fix a
122     possible deadlock in the perl plugin (Closes: #499179).
123   * Added debian/patches/memory_libstatgrab.dpatch - trivial upstream patch to
124     fix a typo in the libstatgrab code of the memory plugin.
125   * Added debian/patches/collectd_memleak.dpatch - trivial upstream patch to
126     fix a possible memory leak.
127   * Added debian/patches/snmp_memleak.dpatch - trivial upstream patch to fix a
128     possible memory leak in the snmp plugin.
129   * Added debian/patches/memcached_fdleak.dpatch - trivial upstream patch to
130     fix a possible file descriptor leak in the memcached plugin.
131   * Added debian/patches/memcached_timeout.dpatch - trivial upstream patch to
132     fix the timeout passed to poll(2).
134  -- Sebastian Harl <sh@tokkee.org>  Thu, 18 Sep 2008 19:12:54 +0200
136 collectd (4.4.2-1) unstable; urgency=low
138   * New upstream release.
139   * Removed librrd0-dev and libmysqlclient14-dev from the build-dependencies -
140     those package are no longer available since Etch.
141   * Removed byacc from the build-dependencies - collectd now requires bison.
142   * Removed libupsclient-config.sh - upstream now supports pkg-config for
143     libupsclient.
144   * Include collection3 in /usr/share/doc/collectd/examples/:
145     - Updated README.Debian to point the collection3's README.
146     - Added libconfig-general-perl to the suggested packages.
147   * README.Debian: Added a note about how to get collectd2html.pl working with
148     version 4 of collectd.
149   * Added debian/patches/myplugin_strcpy.dpatch - use sstrncpy() instead of
150     strcpy() which is poisoned in collectd.h.
151   * collectd.overrides: Removed shlib-with-non-pic-code for nut.so - the
152     plugin now links against the shared libupsclient.
153   * Do not compress any example files, so they may be used directly.
155  -- Sebastian Harl <sh@tokkee.org>  Fri, 25 Jul 2008 19:58:58 +0200
157 collectd (4.4.1-2) unstable; urgency=low
159   * Restrict libcurl4-gnutls-dev build dependency to versions which are not
160     affected by #488701 (Closes: #489091).
161   * Added linux-libc-dev (<< 2.6.25-1) as an option to the linux-libc-dev
162     (>= 2.6.25-4) build dependency - those versions are not affected by
163     #479899.
164   * Added build dependency on pkg-config - this is used by collectd's
165     configure script to check for a couple of libraries.
166   * Added libupsclient-config.sh to imitate libupsclient-config which is no
167     longer available. libupsclient-config.sh is a simple wrapper around
168     pkg-config. This is a workaround until upstream supports pkg-config for
169     libupsclient.
170   * Replaced nut-dev build dependency with libupsclient1-dev:
171     Reenabled the "nut" plugin on all architectures.
173  -- Sebastian Harl <sh@tokkee.org>  Mon, 07 Jul 2008 20:45:53 +0000
175 collectd (4.4.1-1) unstable; urgency=low
177   * New upstream release.
178     - Fixed another issue of the sensors plugin affecting some chip types
179       (Closes: #468143).
180     - Fixed creation of "vserver" graphs in collection.cgi (Closes: #475120).
181     - Fixed a segfault when using libperl 5.10.
182     - collectd now ships libiptc itself.
183     New plugins:
184     - Ascent server statistics: ascent
185     - IPMI sensors information: ipmi
186     - PowerDNS name server statistics: powerdns
187     - incremental parsing of logfiles: tail
188     - TeamSpeak2 server statistics: teamspeak2
189     - detailed virtual memory statistics: vmem
190   * Disable "tcpconns" plugin by default (Closes: #478759).
191   * Reenabled iptables plugin on all architectures (Closes: #473435).
192     - Added the plugin to collectd.conf.
193     - Added /usr/share/doc/collectd/examples/iptables/.
194     - Added build dependency on linux-libc-dev (>= 2.6.25-4) - that version is
195       required because of #479899.
196   * New debconf template translations:
197     - gl.po, thanks to Jacobo Tarrio (Closes: #482667).
198   * Added a work around for #474087 (broken openipmi .pc files) by forcing the
199     inclusion of the ipmi plugin and manually specifying the dependencies.
200   * Updated standards-version to 3.8.0 (no changes).
202  -- Sebastian Harl <sh@tokkee.org>  Tue, 17 Jun 2008 10:35:51 +0200
204 collectd (4.3.2-1) unstable; urgency=low
206   * New upstream release.
207     - Fixed handling of ignored sensors instances (Closes: #468143).
208     - Fixed reading of wireless noise values (Closes: #471788).
209   * Adopted patches and script to extractDS.px being renamed to rrd_filter.px.
210   * Clarified debconf template in respect to packages required for the data
211     migration (Closes: #469336).
212   * collectd.conf: Moved logging plugins to the top of the file.
213   * New debconf template translations:
214     - de.po, thanks to Kai Wasserbäch (Closes: #469334).
215     - fr.po, thanks to Florent Usseil (Closes: #468813).
216     - pt.po, thanks to AmĂ©rico Monteiro (Closes: #469745, #472183).
217   * collectd.init.d: Consider the DISABLE option only when starting collectd.
218   * Disabled iptables plugin - libiptc is no longer available in Debian.
219     - Removed the plugin from collectd.conf.
220     - Removed /usr/share/doc/collectd/examples/iptables/.
222  -- Sebastian Harl <sh@tokkee.org>  Mon, 31 Mar 2008 12:13:18 +0200
224 collectd (4.3.0-2) unstable; urgency=low
226   * Added "lm-sensors" to the recommended packages and README.Debian.plugins
227     (this is required by the sensors plugin).
228   * Restrict the libvirt-dev build dependency and the libvirt plugin to amd64,
229     i386 and powerpc (libvirt is only available on those architectures).
230   * Restrict the libvirt-dev build dependency to versions >= 0.4.0-6 to make
231     sure Xen is supported and to fix some strange FTBFS complaining about a
232     missing symbol "virDomainBlockStats".
234  -- Sebastian Harl <sh@tokkee.org>  Thu, 06 Mar 2008 23:37:44 +0100
236 collectd (4.3.0-1) unstable; urgency=low
238   * New upstream release.
239     - Added basic support for monitoring by introducing notifications and
240       threshold checking.
241     - Reverse lookups can be disabled using the "ReverseLookups" option of the
242       ntpd plugin (Closes: #455162).
243     New plugins:
244     - Set the hostname to an unique identifier: uuid
245     - CPU, dist, network statistics of guest systems: libvirt
246   * Upload to unstable: With the latest changes to the perl plugin, all parts
247     of collectd are suitable for a release.
248   * Added libvirt-dev, libxml2-dev and libhal-dev to the build dependencies.
249   * Updated package description to mention the monitoring support.
250   * Install liboping/oping.h to collectd-dev as well.
251   * collectd.init.d: Optionally start collectdmon to monitor collectd. This
252     can be configured using the USE_COLLECTDMON variable - enabled by default.
253   * collectd.init.d: Added ENABLE_COREFILES option - if enabled the core file
254     limit will be set to unlimited - disabled by default.
255   * Compile collectd with -DLT_LAZY_OR_NOW='RTLD_LAZY|RTLD_GLOBAL' to force
256     lt_dlopen() to use the RTLD_GLOBAL flag which is required by the perl
257     plugin (which would otherwise be unable to find symbols defined in libperl
258     when loading perl modules that require such symbols).
259   * Disable debugging support.
260   * watch file: Added uversionmangle for "beta" and "-rc".
261   * Override "spelling-error-in-description" for the mysql plugin name - all
262     plugins are spelled lowercase.
264  -- Sebastian Harl <sh@tokkee.org>  Tue, 19 Feb 2008 21:44:42 +0100
266 collectd (4.2.4-1) experimental; urgency=low
268   * New upstream release.
269   * Added versioned build-dependency on dpkg-dev (>= 1.14.10); collectd FTBFS
270     with earlier versions because of #452262.
271   * Added libregexp-common-perl (required by Collectd::Unixsock) to the
272     suggested packages.
273   * Added support for the "status" command to the init script.
274   * Updated standards-version to 3.7.3 (no changes).
275   * Added --without-libstatgrab to the configure options to prevent collectd
276     from being linked against this library if it's available.
277   * Disabled xmms plugin - xmms will be removed from unstable
278     (Closes: #459707).
280  -- Sebastian Harl <sh@tokkee.org>  Sun, 27 Jan 2008 18:34:23 +0100
282 collectd (4.2.1-1) experimental; urgency=low
284   * New upstream release.
285   * Changed XS-Vcs-* to Vcs-*.
286   * Marked advanced rrdtool configuration options as such in collectd.conf.
287   * Added exec-munin.px, exec-munin.conf, exec-smartctl and snmp-data.conf to
288     /usr/share/doc/collectd/examples/.
289   * Moved "Homepage" field from package description to the source stanza.
291  -- Sebastian Harl <sh@tokkee.org>  Wed, 21 Nov 2007 09:50:46 +0000
293 collectd (4.2.0-1) experimental; urgency=low
295   * New upstream release.
296     - Added options to collectd2html.pl to specify host and data directory
297       (Closes: #438499).
298     - Link against a thread-safe version of librrd.
299     New plugins:
300     - IPVS connection statistics: ipvs
301     - Statistic of the memcached distributed caching system: memcached
302     - Detailed Linux network interface and routing statistics: netlink (32bit
303       systems only)
304     - Nginx (a HTTP and E-Mail server/proxy) statistics: nginx
305     - Values from SNMP enabled network devices: snmp
306     - Number of TCP connections to specific ports: tcpconns
307     - Bitrate and frequency of music played with XMMS: xmms
308   * Updated init script to wait for collectd to shut down (Closes: #422208).
309   * Merged all plugin packages into the collectd binary package.
310   * Added README.Debian.plugins and gen_plugin_deps.pl to document the plugin
311     dependencies.
312   * Added collectd.overrides to override shlib-with-non-pic-code errors of
313     plugins liked against static libraries which have not been linked with
314     -fPIC.
315   * Removed debian/examples/myplugin.c and debian/examples/MyPlugin.pm - they
316     are included in the upstream sources now.
317   * Added libcurl4-gnutls-dev as option to the libcurl3-gnutls-dev build
318     dependency.
320  -- Sebastian Harl <sh@tokkee.org>  Sun, 28 Oct 2007 13:38:21 +0100
322 collectd (4.0.7-1) experimental; urgency=low
324   * New upstream release.
325   * Disable iptables and nut plugins on hppa as well to work around a FTBFS
326     caused by #358637 and presumably #419684 (Closes: #430933).
327   * Changed collectd-dbg's section to "utils".
328   * Added httpd-cgi to suggested packages.
329   * Added documentation of the provided examples to README.Debian, thanks to
330     Eduard Bloch for his proposal (Closes: #434182).
332  -- Sebastian Harl <sh@tokkee.org>  Fri, 31 Aug 2007 10:04:41 +0200
334 collectd (4.0.3-1) experimental; urgency=low
336   * New upstream release.
338  -- Sebastian Harl <sh@tokkee.org>  Tue, 19 Jun 2007 21:41:21 +0100
340 collectd (4.0.2-1) experimental; urgency=low
342   * New upstream release (Closes: #428114).
343     - Added large file support (Closes: #422212).
344     - Rewrite of the plugin system to allow more flexibility by using
345       different types of plugins.
346     - Added Nagios plugin to query collectd from Nagios.
347     New plugins:
348     - Output to "comma separated values" (CSV) files: csv
349     - Output to RRD files: rrdtool
350     - IO via the network: network
351     - External runtime interface: unixsock
352     - Embedding a Perl interpreter: perl
353     - Logging to files, STDOUT or STDERR: logfile
354     - Logging to syslog: syslog
355     - Amount of available entropy: entropy
356     - Execution of external programs: exec
357     - Iptables statistics: iptables (32bit systems only)
358     - IRQ counters: irq
359     - UPS information: nut (32bit systems only)
360   * New binary package collectd-perl (linking against libperl).
361     - Added collectd-perl to suggested packages.
362   * examples/myplugin.c: Converted to the new plugin interface.
363   * Enabled debugging.
364   * Added possibility to automatically migrate RRD files to collectd-4 using
365     migrate-3-4.px and extractDS.px provided by upstream.
366     - Added extractDS_path.dpatch to set an absolute path in migrate-3-4.px.
367     - Using po-debconf to make translations of debconf templates possible.
368   * Added NEWS.Debian with notes regarding the upgrade to collectd-4.
369   * Updated init script to only start a single collectd process.
370   * Added examples/MyPlugin.pm.
371   * Added XS-Vcs-{Git,Browser} tags.
372   * Added check_plugins.pl to check the build result of all plugins.
373   * Do not build apple_sensors and tape plugins as they do not provide any
374     functionality any longer.
376  -- Sebastian Harl <sh@tokkee.org>  Wed, 13 Jun 2007 18:58:34 +0100
378 collectd (3.11.2-1) experimental; urgency=low
380   * New upstream release.
381   * Removed sensors-ignorelist.dpatch - has been merged upstream.
382   * Removed email-ignore-size-le-0.dpatch - has been merged upstream.
383   * Added watch file.
384   * examples/myplugin.c: Pass "-" instead of NULL to plugin_submit().
386  -- Sebastian Harl <sh@tokkee.org>  Thu, 15 Feb 2007 09:19:15 +0000
388 collectd (3.11.0-1) experimental; urgency=low
390   * New upstream release.
391     New plugins:
392     - DNS traffic (query types, response codes, opcodes and traffic): dns
393     - E-Mail statistics (count, traffic, spam scores and checks): email
394     - Motherboard monitor: mbmon
395     - Multimeter statistics: multimeter (beta version)
396   * Upload to experimental because of Etch freeze.
397   * New binary package collectd-dns (linking against libpcap).
398     - Added collectd-dns to suggested packages.
399   * Do not split off packages introducing new recommendations or suggestions.
400     - Merge collectd-hddtemp into collectd.
401     - Add hddtemp and mbmon to suggested packages.
402   * Added sensors-ignorelist.dpatch: Avoid assertion in ignorelist_match ()
403     when sensors plugin is not configured.
404   * Added email-ignore-size-le-0.dpatch: Ignore the size of an email if it is
405     less than or equal to zero.
407  -- Sebastian Harl <sh@tokkee.org>  Sun, 24 Dec 2006 14:09:39 +0000
409 collectd (3.10.4-1) unstable; urgency=low
411   * New upstream release.
412     - Fix an infinite loop in server mode if binding to a socket fails and
413       close the socket descriptor (Closes: #404018).
414   * examples/myplugin.c: Include system headers before collectd headers to
415     make it compile without any autoconf defines set (Closes: #401075).
417  -- Sebastian Harl <sh@tokkee.org>  Fri, 22 Dec 2006 00:33:30 +0000
419 collectd (3.10.3-1) unstable; urgency=low
421   * New upstream release.
422   * Made package binNMUable:
423     - Upstream assures API backward compatibility only between patch releases.
424   * LSBized init script.
426  -- Sebastian Harl <sh@tokkee.org>  Mon,  6 Nov 2006 13:09:28 +0000
428 collectd (3.10.2-1) unstable; urgency=low
430   * New upstream release.
431     - Retry connecting to remote host and database in ping and mysql plugins
432       respectively (Closes: #393742).
433   * Replaced libcurl3-dev build dependency with libcurl3-gnutls-dev to prevent
434     linking against libssl.
436  -- Sebastian Harl <sh@tokkee.org>  Fri,  3 Nov 2006 15:18:17 +0000
438 collectd (3.10.1-4) unstable; urgency=low
440   * Changed collectd-dbg's section and priority to "devel" and "extra"
441     respectively.
442   * Set init start sequence code to 95 to be sure to start after any daemons
443     that data is collected from.
445  -- Sebastian Harl <sh@tokkee.org>  Thu,  5 Oct 2006 10:25:07 +0000
447 collectd (3.10.1-3) unstable; urgency=low
449   * Added --oknodo to start-stop-daemon in the init script (Closes: #379703).
451  -- Sebastian Harl <sh@tokkee.org>  Tue, 25 Jul 2006 18:34:55 +0200
453 collectd (3.10.1-2) unstable; urgency=low
455   * Added collectd-dbg package.
457  -- Sebastian Harl <sh@tokkee.org>  Sun, 23 Jul 2006 23:39:42 +0200
459 collectd (3.10.1-1) unstable; urgency=low
461   * New upstream release.
462   * Dynamically link against external liboping.
463     - New binary package collectd-ping.
464     - Added collectd-ping to suggested packages.
465   * Moved config file from /usr/share/doc/collectd/examples/ to
466     /etc/collectd/.
468  -- Sebastian Harl <sh@tokkee.org>  Sat, 22 Jul 2006 21:43:37 +0200
470 collectd (3.10.0-1) unstable; urgency=low
472   * New upstream release.
473     New plugins:
474     - APC UPS's charge, load, input/output/battery voltage, etc.: apcups
475     - NTP daemon's local clock drift, offset to peers, etc.: ntpd
476   * Upstream no longer provides a debian/ directory. Thus no repackaging is
477     required any longer.
478   * Not using getifaddrs() is now the default in upstream. getifaddrs.dpatch
479     no longer needed.
480   * Added collectd-hddtemp as a suggestion to the collectd package.
482  -- Sebastian Harl <sh@tokkee.org>  Sun,  9 Jul 2006 21:52:13 +0200
484 collectd (3.9.4+debian-1) unstable; urgency=low
486   * Initial release (Closes: #373008).
487   * Removed upstream's debian/ directory from .orig.tar.gz.
488   * getifaddrs.dpatch: Patching src/traffic.c to read data from /proc instead
489     of using getifaddrs(). getifaddrs() does not seem to work correctly on 
490     AMD64.
492  -- Sebastian Harl <sh@tokkee.org>  Fri,  7 Jul 2006 15:49:42 +0200