~ubuntu-branches/ubuntu/maverick/rrdtool/maverick

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2010-07-22 08:07:01 UTC
  • mfrom: (1.2.8 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100722080701-k46mgdfz6euxwqsm
Tags: 1.4.3-1ubuntu1
* Merge from debian unstable, Remaining changes:
  - debian/control: Don't build against ruby1.9 as we don't want
    it in main.
* require libdbi >= 0.8.3 to prevent aborts when using dbi datasources

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
RRDTOOL NEWS
2
 
============
 
1
#####################################
 
2
Major Changes between 1.3.x and 1.4.x
 
3
-------------------------------------
 
4
$Id: NEWS 2005 2010-01-20 19:47:04Z oetiker $
 
5
 
 
6
RRD Caching Daemon (rrdcached)
 
7
------------------------------
 
8
by Florian Forster and Kevin Brintnall
 
9
 
 
10
The RRD Caching Daemon can dramatically improve the 'update' performance
 
11
of your system.  Due to file handling overheads, the time it takes todo one
 
12
update is virtually the same as to doing two updates in a row.
 
13
 
 
14
The Cache Daemon intercepts rrdtool update calls, assembling multiple
 
15
updates before writing them to the actual rrd file. When calling rrdtool
 
16
graph in such a setup, the command will tell the daemon to flush out all
 
17
pending updates for the rrd files, required to draw the graph.
 
18
 
 
19
See rrdcached documentation.
 
20
 
 
21
RRD Dumping and Restoring (rrdtool dump/restore)
 
22
------------------------------------------------
 
23
by Tobi Oetiker
 
24
 
 
25
The output of rrdtool dump has been adjusted to be simpler to parse by
 
26
existing xml parsers.
 
27
 
 
28
The restore core has been completely re-written yet again and is now relying
 
29
on an incremental xml parser. This has the advantage that the memory
 
30
consumption while restoring xml files is only slightly larger than the
 
31
resulting rrd file. Which is much less than the requirements of the 1.3 and
 
32
even 1.2
 
33
 
 
34
RRD Graphing functions (rrdtool graph)
 
35
--------------------------------------
 
36
by Martin Sperl
 
37
 
 
38
* VDEF PERCENTNAN (a PRECENT that ignores NAN)
 
39
 
 
40
* CDEF PREDICT and PREDICTSIGMA functions for on-the-fly
 
41
  data prediction without the need to modify existing rrd files as it is
 
42
  required for HoltWinters.
 
43
 
 
44
* LibDBI integration provides a path to read data directly of a supported
 
45
  SQL database into rrdtool graph. See rrdgraph_libdbi documentation.
 
46
 
 
47
Miscellaneous Changes
 
48
---------------------
 
49
* graph legends can now be placed left, right or above the graph with the
 
50
  new --legend-direction and --legend-positon placement options. 
 
51
  by Melchior Rabe
 
52
 
 
53
* switched to using automake 1.11 which provides a 'silent' build process,
 
54
  causing errors and warnings to stand out much more than before.
 
55
  by Tobi Oetiker
 
56
 
 
57
* switched from intltoolize to autopoint for the i18n configuration.
 
58
  by Tobi Oetiker
 
59
 
 
60
* new graph option --grid-dash on:off to configure the dash length
 
61
  in the grid painted over the graph by Tobi Oetiker
 
62
 
 
63
* lua bindings for rrdtool
 
64
  by Fidelis Assis
 
65
 
 
66
* various improvements to rrd_open functions and mmap handling
 
67
  by Daniel Pocock
 
68
 
 
69
* allow the HW smoothing window size to be set to 0 with rrdtool tune
 
70
  by sylvain luiset
 
71
 
 
72
* new graph option --border to set the 3d border width 
 
73
  by Bernhard Reutner-Fischer
 
74
 
 
75
* draw different color markers (enable with --dynamic-labels) depending on the
 
76
  type of element in the graph by Lo�c Tortay
 
77
 
 
78
for more detail see the CHANGES file.
3
79
 
4
80
#####################################
5
81
Major Changes between 1.2.x and 1.3.x
28
104
 
29
105
* --font-render-mode=mono for non anti aliased fonts
30
106
 
31
 
* fonts come through fontconfig, use the Pango font nameing scheme
32
 
  -> 'Times 20' ... it is not possible to use truetype fonts
 
107
* fonts come through fontconfig, use the Pango font naming scheme
 
108
  -> 'Times 20' ... it is not possible to use true-type fonts
33
109
  directly anymore.
34
110
 
35
111
* Tabs are position independent.