Code

Mention the removal of the different operating modes in NEWS.Debian.
[pkg-collectd.git] / debian / NEWS.Debian
1 collectd (4.0.0-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   This also means that a single configuration file is sufficient and there are
29   no longer any different modes that need to be configured. The init script
30   does no longer start one collectd process for each config file found in
31   /etc/collectd/ but only for collectd.conf.
33   Additionally, the syntax of the configuration file has changed slightly. All
34   strings need to be surrounded by double quotes. See collectd.conf(5) for
35   details.
37  -- Sebastian Harl <sh@tokkee.org>  Mon,  4 Jun 2007 00:41:32 +0200