Code

NEWS.Debian: Added a note about the new plugins "rrdtool", "syslog", etc.
[pkg-collectd.git] / debian / NEWS.Debian
1 collectd (4.0.0~rc6-1) experimental; urgency=low
3   This version introduces significant changes to the layout of the RRD files
4   created by collectd. In order to keep your old data you have to migrate it.
5   This can be done by using /usr/lib/collectd/utils/migrate-3-4.px. This
6   script will output a series of shell commands that should do all the work
7   automatically. However, depending on your setup, a couple of minor changes
8   might be necessary to migrate all of your data. In this case, please file a
9   bug report so that the necessary changes can be added to the script. The
10   script creates the new RRD files in /tmp/collectd-4/ which can be moved to
11   /var/lib/collectd/rrd/ if everything went right.
13   Thus, the migration can be done like this (you might want to backup your
14   data before):
16     /usr/lib/collectd/utils/migrate-3-4.px | bash
17     rm -rf /var/lib/collectd
18     mkdir /var/lib/collectd
19     mv /tmp/collectd-4 /var/lib/collectd/rrd
21   Thanks to the new plugin infrastructure, the functionality to write RRD and
22   CSV files and the logging and networking facilities could be removed from
23   collectd's core and put into separate plugins, allowing more flexible
24   configurations. To get the behavior of collectd 3.x you have to enable the
25   "rrdtool" and "syslog" plugins (enabled by default) and enable and configure
26   the network plugin. See collectd.conf(5) for details.
28   Additionally, the syntax of the configuration file has changed slightly. All
29   strings need to be surrounded by double quotes. See collectd.conf(5) for
30   details.
32  -- Sebastian Harl <sh@tokkee.org>  Tue, 24 Apr 2007 10:44:26 +0200