28b801cb9484fc1d9f99459e331f9c895855ed2a
[rrdtool.git] / NEWS
1 RRDTOOL NEWS
2 ============
3 Major Changes between 1.2.x and 1.3.x
4
5 File access methods
6 -------------------
7 * introduced file-accessor functions rrd_read/rrd_seek/rrd_write
8 * implemented full mmap-based file access with madvise hints for improved
9   scalability, much reduced memory-footprint and much less blocking on
10   disk
11 * implemented optional full file-descriptor access instead of FILE* access
12
13 Graphing
14 --------
15 * libart has been replaced by cairo/pango
16 * pango markup is supported
17 * full gridfitting 
18 * --graph-render-mode=mono for non antialiased graphing
19 * --font-render-mode=mono for non antialiased fonts
20
21
22 RRDTOOL NEWS
23 ============
24 Major Changes between 1.0.x and 1.2.x
25
26 Graphing
27 --------
28
29 * rewritten graphics generation based on libart.
30   - anti-aliased output
31   - alpha transparency support
32   - truetype fonts
33  
34 * additional graphics formats: EPS, PDF, SVG
35
36 * extended multi-part documentation
37
38 * VDEF support; define and use variables.  Find, and use, the
39   maximum rate seen by rrdtool; compute and show the average
40
41 * Sliding window (trend) analysis
42   Compute a smoother average, for instance over the last 6 CDPs
43
44 * percentile (95th or other)
45   Remove peaks, 95 percent of all rates are at or below the
46   returned value
47
48 Logging
49 -------
50 * a second logging interface: rrdtool updatev
51   Verbose updating of the database; show CPDs being created
52
53 * Aberrant Behavior Detection with Holt-Winters Forecasting
54   Compare current data with expected data, detect and log when
55   the rates are outside expected levels
56
57 * COMPUTE data type for artificial data-sources calculating their
58   input using RPN math and data from the other data-sources.
59  
60 Incompatibilities
61 -----------------
62 * Colons in COMMENT arguments to rrdtool graph must be escaped with a backslash
63
64 * the --alt-y-mrtg option is gone or rather since 1.2.7 it is back but
65   without functionality.
66
67 * In pipe mode, rrdtool answers with OK only if it was successful with the
68   command. Otherwhise the answer will be ERROR...
69
70
71 Behind the Scenes
72 -----------------
73 * In order to support Holt-Winters and Calculated Datasources,
74   the rrdtool data format has changed. While the new version of rrdtool can
75   read files created with rrdtool 1.0.x. It is not possible to read files
76   created by rrdtool-1.2.x with rrdtool-1.0.x
77
78 * External libraries are not included with rrdtool anymore. This is in line
79   with todays trend of using shared libraries everywhere. With the exception
80   of the cgi library most things required by rrdtool will be found on every recent
81   system.
82
83 * Memory Mapped IO support for faster logging.