ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/NEWS
(Generate patch)

Comparing projects/libstatgrab/NEWS (file contents):
Revision 1.25 by tdb, Tue Mar 9 12:25:38 2004 UTC vs.
Revision 1.45 by tdb, Fri Jul 13 20:36:46 2007 UTC

# Line 3 | Line 3 | http://www.i-scream.org/libstatgrab/
3  
4   $Id$
5  
6 + PLANS: We're now working towards a 1.0 release which is where we plan
7 +       to stabilise the API. We'll be doing test releases before hand,
8 +       but as always we'll like to hear about any bugs found in the
9 +       current release.
10 +
11 + libstatgrab 0.15 (14 July 2007)
12 + * Fix breakages in memory stats on OpenBSD that were introduced in
13 +   the last release.
14 +     (Thanks to David Love)
15 + * Update internal string functions and some related cleanups.
16 +     (Thanks to David Love)
17 + * Fix compile warning on FreeBSD.
18 +
19 + libstatgrab 0.14 (08 January 2007)
20 + * Fix memory stats on OpenBSD.
21 + * Add colour support to saidar.
22 +     (Thanks to Angelina Carlton)
23 + * Fix CPU stats on Solaris - swap and iowait were incorrectly reported.
24 + * Fix kstat related memory leaks on Solaris.
25 +     (Thanks to Javier Donaire)
26 + * Fix network stats on some unusual Solaris setups.
27 + * Fix process time_spent on Linux.
28 +     (Thanks to Fred Barnes)
29 + * Make interface up status check the link status as well.
30 +     (Thanks to Michelangelo Vassallo)
31 + * Fix build on NetBSD 3.
32 +     (Thanks to Wijnand Wiersma)
33 + * Rework curses detection code in the configure script.
34 + * Fix bug that caused saidar to crash when the window was rapidly resized.
35 +
36 + libstatgrab 0.13 (19 March 2006)
37 + * Fix build problems with recent linux kernels.
38 + * Make saidar truncate disk/inteface/mount names to fit in display.
39 + * Add WIN32 support using MINGW (not widely tested).
40 + * Fix network interface up/down status on Solaris.
41 + * Add extern "C" to header file to make linking with C++ code easier.
42 + * Fix statgrab to cope with filesystem paths containing dots.
43 + * Make NFS a legal filesystem type on all platforms.
44 + * A few minor build fixes.
45 +
46 + libstatgrab 0.12 (31 July 2005)
47 + * More details added to filesystem statistics.
48 +     (Patches provided by Roman Neuhauser)
49 + * Rework Linux partition detection.
50 + * Fix compile error in network stats on Linux 2.6.
51 +     (Patches provided by Scott Lampert)
52 + * Change name of duplex value in network interface stats.
53 +     NOTE: this minor change breaks the API.
54 + * Manual pages for saidar, statgrab and the other tools.
55 + * Fix minor typo in statgrab usage output.
56 + * Support for Solaris 10.
57 + * Support for FreeBSD 7.
58 +
59 + libstatgrab 0.11.1 (03 March 2005)
60 + * Add NFS to list of supported filesystems.
61 + * Fix reporting of network interface duplex settings on Linux.
62 + * Fix saidar to support negative FS usage.
63 +
64 + libstatgrab 0.11 (09 November 2004)
65 + * Add support for HP-UX 11.11.
66 +    (Patches provided by Roy Keene)
67 + * Minor fixes to statgrab mrtg tools.
68 + * Minor fixes to saidar.
69 + * Minor code cleanups and fixes to libstatgrab.
70 +
71 + libstatgrab 0.10.3 (24 August 2004)
72 +
73 + * Add -f flag to statgrab to display floating-point numbers multiplied
74 +   by an integer.
75 + * Add -K, -M and -G flags to statgrab to show byte counts in kibibytes,
76 +   mebibytes or gibibytes.
77 + * Make statgrab-make-mrtg-config use the new flags to scale extremely
78 +   large or small numbers so that mrtg can handle them.
79 + * Make statgrab-make-mrtg-config automatically detect network interface
80 +   speeds.
81 + * Add support for FreeBSD 6.0-CURRENT.
82 +
83 + libstatgrab 0.10.2 (27 July 2004)
84 +
85 + * Fix shared library version that when backwards in 0.10.1.
86 +
87 + libstatgrab 0.10.1 (26 July 2004)
88 +
89 + * Use DESTDIR correctly when setting permissions at install time.
90 + * Fix disk stats to work with OpenBSD 3.5.
91 + * Fix disk stats on NetBSD 2.0 (statvfs instead of statfs).
92 + * Fix memory leak in process stats on NetBSD 2.0.
93 + * Add vxfs (Veritas filesystem) to list of known filesystems
94 +   on Solaris.
95 + * Add more variables to the pkg-config file to suggest suitable
96 +   ownership and permissions for binaries using libstatgrab.
97 + * Make sure statgrab.h can safely be included twice.
98 + * Fix statgrab to display network interface names even if they
99 +   don't have IO stats (like the loopback interface on Solaris).
100 + * Add error reporting function that grabs errno.
101 +
102 + libstatgrab 0.10 (20 May 2004)
103 +
104 + * All function and structure names now follow a standardised
105 +   naming scheme. This will break compatibility with existing
106 +   programs. To use pre-0.10 compatibility functions:
107 +
108 +     #define SG_ENABLE_DEPRECATED
109 +     #include <statgrab.h>
110 +
111 + * New process stats function added to provide full details
112 +   on currently running processes. See sg_get_process_stats
113 +   for details.
114 + * Compare functions provided for process, network, and disk io
115 +   statistics. These can be used with qsort.
116 + * Error reporting functions added. See sg_get_error and
117 +   associated functions.
118 + * Support added for NetBSD 2.0.
119 + * Lots of code tidying.
120 + * Python bindings now exist in a separate package:
121 +     http://www.i-scream.org/pystatgrab/
122 +
123   libstatgrab 0.9 (10 March 2004)
124  
125   * Added network interface information:
# Line 80 | Line 197 | libstatgrab 0.5.1 (09 September 2003)
197   * Network stats wrap-around bug fixed on Linux and FreeBSD
198   * Linux now reads disk information from /proc/partitions if available.
199     This results in it getting data for all the disks.
200 < * An additional tool, statgrab, has been added to allow external programs
200 > * An additional tool, statgrab, has been added to allow external programs
201     to easily parse statistics generated by libstatgrab.
202   * Scripts to generate MRTG (www.mrtg.org) configs with statgrab have
203     been added. This allows graphs to be generated from system stats.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines