-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
1189 lines (823 loc) · 37.8 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ChangeLog for RRDtool 1.0.x
---------------------------
- bugfix, + enhancement, * contrib, = RELEASE
---------------------------------------------
= 1.0.50 2005/04/25 -- Tobi
+ 2005/03/09 -- Burton Strauss <[email protected]>
added rrd_first tool
- 2005/03/09 -- Burton Strauss <[email protected]>
fix warning in rrd_tool.c (xport)
- 2005/02/27 -- [email protected]
* don't throw an error if setenv is successful in rrd_cgi.
* 2005/01/27 -- [email protected]
* updates for windows MS VC++ 6 build
- 2005/01/07 -- From: Chris Wilson <[email protected]>
* fix rpm spec file
- 2004/11/19 -- Simon Leinen <[email protected]>
* allow + in update arguments
- 2004/11/08 -- Tobi
* remove limit on graph size with -j
- 2004/10/01 -- Haroon Rafique <[email protected]>
* fix return codes
* fix documentation on m in parsetime ...
- 2004/10/08 -- Ricardo Jorge <[email protected]>
* fix getop_cleanup call in tcl bindings
- 2004/08/10 -- Albert Chin-A-Young <[email protected]>
* reintroduced pic_flags in configure.ac
- 2004/08/08 -- Tobi
* added note on escaping : in time string to rrdcgi manual
* add sanity checks in image loading code of overlay and background
- 2004/08/08 -- Dmitry Sivachenko <[email protected]>
* added missing -N option to getopt_long in rrd_graph
= 1.0.49 2004/08/08 -- Tobi
- 2004/08/08 -- Tobi
* applied all outstanding patches to libpng 1.0.9
- 2004/07/23 -- Blair Zajac <[email protected]>
* make it compile without perl
- 2004/07/16 -- Krzysztof Kotlenga <[email protected]>
* fix lucida compiled in font to be realy bold
- 2004/07/14 -- Arend-Jan Wijtzes <[email protected]>
* fixed rrdcgi issues with evaluation tags inside arguments
+ 2004/05/25 -- Wolfgang Schrimm <wolfgang{dot}schrimm{at}urz{dot}uni-heidelberg{dot}de>
* dtd files for dump and xport xml files
+ 2004/05/25 -- Mike Schilli <[email protected]>
* added dump and restore support to persbindings
+ 2004/05/25 -- Tobi
* added example to rrdtool dump from debian patch ...
- 2004/05/09 -- Lars Thegler <[email protected]> (and Blair Zajac)
* make RRD.xs compile with old perls
- 2004/05/08 -- Tobi
* missed : in getopt for -X causing segfault
- 2004/04/24 -- Milan Obuch <[email protected]>
* better layout when printing data from rrdtool
= 1.0.48 2004/04/06 -- Tobi
- 2004/04/05 -- Thomas M. Payerle <[email protected]>
* tcl makefile was broken again ... (tobi does not use tcl)
- 2004/04/05 -- Tobi
* allow icon size up to 64pixels
- 2004/04/05 -- Gustavo Badauy <[email protected]>
improve compilability on windows
= 1.0.47 2004/04/04 -- Tobi
+ 2004/04/04 -- Gabor Gombas <[email protected]>
added stdout flushing to rrdexplorer.cgi
+ 2004/04/04 -- Piotr Kodzis <[email protected]>
--only-graph option for rrdtool graph
+ 2004/04/04 -- Antoine Delvaux <antoine(dot)delvaux(at)belnet(dot)be>
--force-rules-legend option to force drawing of [HV]RULE legends
- 2004/03/23 -- "Girod, Laurent" <[email protected]>
open file in binary for writing in restore ... (unbreak things on windows)
- 2004/03/11 -- Milan Obuch <[email protected]>
fixes to perl-shared to find config.h propperly
- 2004/03/09 -- Michael Boman <[email protected]>
fixed tcl building even more
- 2004/02/18 -- Dominik Loniewski <[email protected]>
fixed tcl building some more
- 2003/01/19 -- David L. Barker <[email protected]>
Fixed xport crash when processing different size variable sets
Ensured that xport output variables are in the row with the correct timestamp
Removed unused allocated array srcptr_list[]
- 2004/01/17 - Gerhard Strangar <[email protected]>
fixed pod files to allow indexing with solaris windexer
+ 2003/11/02 - Christophe Kalt <[email protected]>
addition of RRDs::times()
- 2004/01/12 -- [email protected]
fix for tcl makefile
- 2004/01/11 -- Milan Obuch <[email protected]>
improved mrtg alt scale
improved ascii output spacing in rrdtool cli (port from FreeBSD)
fixed error in month parsing in parsetime (port from FreeBSD)
= 1.0.46 2004/01/04 -- Tobi
+ 2004/01/01 -- Tobi
update configure system to using latest autoconf/libtool/autmake
- 2003/12/26 -- Tobi
using --rigid and an upper-limit it was possible to get a case
where minval was bigger than maxval -> endless loop
- 2003/11/27 -- Ian Holsman <[email protected]>
RRDs should not segfault on invalid graph input
+ 2003/11/23 -- Arend-Jan Wijtzes <[email protected]>
added recursive parsing to rrdcgi
- 2003/11/17 -- Arend-Jan Wijtzes <[email protected]>
rrdcgi should not crash on getting an empty environment variable
- 2003/11/11 -- Karsten Müller <[email protected]>
MacOS X 10.3 introduced time_value as a define in their standard headers ...
renamed ours to rrd_time_value
- 2003/11/04 -- Kuba Filipowicz <[email protected]>
rrdtool should print dsnames with 20 chars not 14
- 2003/10/27 -- Tobi
fixed ambiguity problem in parsetime during daylight saving changeover
- 2003/10/26 -- Kasparek Tomas <[email protected]>
make sure CDEF entries are always parsed with locale set to C otherwhise it is possible
that . and , get different meanings ...
+ 2003/10/10 -- Chin Guok <[email protected]>
--units-length option for configuring the spaceing of the graph
to the left. Automatic shrinking of the graph is no vertical lable
is defined.
- 2003/09/13 -- Philippe Charnier <[email protected]>
spell fixes for documentation and cmments in the code
+ 2003/08/06 - Tobi
Make sure rrd_update does complain when consuming invalid data
+ 2003/08/27 - Jeff Vier <[email protected]>
patch php4 bindings for php 4.3.3
+ 2003/08/06 - Lee Thompson <[email protected]>
added --enable-local-libpng option to configure
added --enable-local-zlib option to configure
autoconf/automake fixes to allow running configure in alternate directory
+ 2003/08/06 - Tobi
Added visual$ project files from win dist into package
- 2003/08/04 - Dan Lowe <[email protected]>
fix for tcl bindings build
- 2003/07/31 - Tobi
removed MRTG-HOWTO reference ... from rpm spec
- 2003/07/23 - Tobi (and Stephan Eisfeld <[email protected]>)
fixed drawing black lines .. color re-use was too eager.
= 1.0.45 2003/07/21 -- Tobi
- 2003/07/21 - Tobi (and Stephan Eisfeld <[email protected]>)
fix building with broken solaris nrof
fix Makefile perl bundle test again
- 2003/07/15 - Pekoe <[email protected]>
fix for yaxis lable 0 with altgrid ...
fix for [ tests in Makefile
= 1.0.44 2003/07/11 -- Tobi
- 2003/07/11 - Tobi
while determining if rrd_diff was broken, I added debug code
and left it in there ... should not have any
effect on the final binary but it is just too embarrassing.
= 1.0.43 2003/07/03 -- Tobi
- 2003/06/30 - Kasparek Tomas <[email protected]>
fix for php4 bindings
- 2003/06/27 - Pierre Suter <[email protected]>
fixed gifsize ... ZeroDataBlock name clash (Mac OS X)
fixed tcl compile
fixed perl install for mac os x
+ 2003/05/20 - "Erskine, Thomas" <[email protected]>
enhanced rrdcgi with <RRD::TIME::STRFTIME ...>
- 2003/05/19 - Kasparek Tomas <[email protected]>
fix for php4 bindings
- 2003/05/11 - Daniel Karrenberg <[email protected]>
be more imaginative when you run out of colors in complex graphs
- 2003/04/23 - Tobi
added propper version update for rrdtool.spec
= 1.0.42 2003/04/12 -- Tobi
- 2003/04/10 - Fabrice Bacchella <[email protected]>
make build realy location independent
+ 2003/04/04 - Michal Suszko <[email protected]>
added --enable-latin2 option to config
- 2003/03/30 - Burton M. Strauss III <[email protected]>
rrd_uptate should not crash on a bad option
- 2003/03/13 - Tobias Oetiker <[email protected]>
fixed rrdcgi to not segfault enen when abused.
- 2003/03/10 - Sasha Mikheev <[email protected]>
handle negative numbers with DERIVE and COUNTER
- 2003/03/01 - Christophe Kalt <[email protected]>
don't display legends for [HV]RULEs out of graph bounds (rrdgraph)
- 2003/03/01 Matt Zimmerman <[email protected]>
don't print image size when outputting to stdout
= 1.0.41 2003/02/19 -- Tobi
- 2003/02/16 Matthias Lederhofer <[email protected]>
fixed macro name clash in parsetime
fixed handling of stdin in rrdtool restore
+ 2003/01/23 Travis Brown <[email protected]>
added option to turn off minor gridlines
- 2003/01/20 Anthony Howe <[email protected]>
disable CDPATH in configure if it is set hell breaks loose
- 2003/01/17 Stanislav Sinyagin <[email protected]>
fix borderline problem with rrd_fetch selecting the wrong rra under certain conditions
+ 2003/01/15 James Overbeck <[email protected]>
single letter names for all rrd_graph options
+ 2002/12/20 Carter Bullard <[email protected]>
new text formatting escape: \J disables glue expansion
- 2002/12/14 Russell Van Tassell <[email protected]>
fixed "gcc -B/usr/ccs/bin/" problem for perl on solaris
- 2002/11/29 David Lee <[email protected]>
added rrdtool info into main manpage
+ 2002/11/18 Tarmo Ainsaar <[email protected]>
new formatting marker '%lg' for [G]PRINT
- 2002/11/19 Albert Chin-A-Young <[email protected]>
[gd1.3/gd.c src/gifsize.c]
Declare ZeroDataBlock static to avoid duplicate name clash in
object files when linked together.
- 2002/11/19 Albert Chin-A-Young <[email protected]>
[configure.in]
Test -OPT:IEEE_NaN_inf=ON on IRIX for SGI C compiler.
- 2002/10/24 Krzysztof Ceglinski <[email protected]>
make rrd_cgi work with apache 2
- 2002/10/22 Darren Kelly <[email protected]>
PREV(X) fixed again ...
= 1.0.40 2002/10/11 -- Tobi
- 2002/10/11 Jeffrey Wheat <[email protected]>
updated php4 bindings to work with php 4.2.3
- 2002/10/07 Tomoyuki Murakami <[email protected]>
-z does not take an option
- 2002/10/03 Gonzalo Augusto Arana Tagle <[email protected]>
fix for PREV() operator
- 2002/08/01 Paul Clifford <[email protected]>
fix for segfault in print_calc function
+ 2002/07/31 "Nenad Antic (EAB)" <[email protected]>
rrdfetch manpage update
- 2002/07/12 Gonzalo Augusto Arana Tagle <[email protected]>
PREV(xxx) match with DEF_NAM_FMT
- 2002/07/12 Joerg Mertin <[email protected]>
fixed bindings for php4
- 2002/07/02 [email protected]
fixed DINF for win32 compile
= 1.0.39 2002/06/20 -- Tobi
+ 2002/06/20 -- Gonzalo Augusto Arana Tagle <[email protected]>
* new CDEF feature PREV(x) which allows for funky new filters
to be created easily
+ 2002/06/14 -- "Shipway, Steve" <[email protected]>
* Improved docs for rrd_resize
- Tobi
* increassed commandline buffer in rrd_tool.c to 100 kilo Byte
* in rrd_graph replace rint by ceil ...its more portable
* remove // comments and replace with /* .... */
* due to popular demand change strftime format to %V for weeks
+ 2002/05/24 -- Joe Griffin <[email protected]>
* config.guess and config.sub updates for IA64
= 1.0.38 2002/05/22 -- Tobi
- 2002/05/12 -- Tobi
* fix for crash in restore when used with existing file
- 2002/04/29 -- Alex
* fix for PRINT template parser in rrd_graph ...
- 2002/04/16 -- Milan Obuch <[email protected]>
* fix for --alt-mrtg
+ 2002/05/01 Wolfgang Schrimm <[email protected]>
* new subcommand xport
= 1.0.37 2002/04/13 -- Tobi
- 2002/04/14 -- Thierry Nkaoua <[email protected]>
* do not change LC_ALL but just LC_TIME ...
= 1.0.36 2002/04/13 -- Tobi
+ 2002/04/13 -- Milan Obuch <[email protected]>
* added new options to rrdgraph. Check the manpage for
--overlay, --background, --unit, GD (graph output format)
+ 2002/04/09 -- Tobi
* added setlocale and tzset calls to rrd_graph
- 2002/04/09 -- Tobi
* removed description of --goodfor and --refresh from rrdcgi
- 2002/04/02 -- Paul Vixie <[email protected]>
* rrd restore should not burn down existing files
- 2002/03/23 -- Oliver Cook <[email protected]>
* kill segfault in diff code for non digit input
- 2002/03/23 -- Ashok Mandala <[email protected]>
* make sure CDEFs work properly even when none of the contributing
data sources start at start of the cdef.
+ 2002/03/20 -- David Lee <[email protected]>
* Allow link builds through the ../configure syntax
= 1.0.35 2002/03/20 -- Tobi
- 2002/03/20 -- Tobi
* fixed longstanding off by 1 bug in CDEF for cases where RRDs with
different step sizes were mixed in one CDEF
- 2002/03/13 -- Tobi
* Deal with cases where Config{cc} contains an absolute path to perls
C compiler.
- 2002/03/14 -- Matt Galvin <[email protected]>
* new OS detector config files which can deal with macos X
= 1.0.34 2002/03/12 -- Tobi
- 2002/02/12 -- Tobi
* replaced zlib 1.1.3 with 1.1.4
- 2002/02/06 -- Alexander Schwartz <[email protected]>
* allow rrdcgi to deal with umlauts
- 2001/12/27 -- [email protected]
* fix overflow error in rrd_fetch
- 2001/11/28 -- Richard A. Steenbergen <[email protected]>
* allow + - and ' ' in printfsring
- 2001/03/31 -- Tobi
* added 'all' dependancy to site-perl-install rule as many seem to skip
this step when instaling cricket ... probably an incomplete cricket doku.
- 2001/03/02 -- Mike Franusich <[email protected]>
* filedescriptor leak fixed in rrd_open for faild open attempts.
- 2001/03/01 -- Tobi
* test if compiler perl wants to use for building its modules is available on the system
* zlib wants to be linked with -fpic on HPUX or it breaks ...
= 1.0.33 2001/02/22 -- Tobi
- 2001/02/20 -- Tobi
yet another file ... pod in perl 5.005 is a bitch ...
= 1.0.32 2001/02/20 -- Tobi
- 2001/02/20 -- Tobi
still one file missing ... now it should work with old perls ...
was all about the format of .pod manpages anyway ... the software
has not changed except for the version number
= 1.0.31 2001/02/20 -- Tobi
- 2001/02/20 -- Tobi
do not require perl 5.6 anymore ... 5.005 should be fine as well
= 1.0.30 2001/02/19 -- Tobi
- 2001/02/19 -- Alex
be more cautious when not redrawing a graph because of --lazy
+ 2001/02/19 -- Tobias Oetikr <[email protected]>
added --help about --step to rrdgraph
= Beta 1.0.29
+ 2001/02/11 -- Roman Hoog Antink <[email protected]>
add unix time to rrddump comment
- 2001/02/11 -- Terminator rAT <[email protected]>
support --x-grid strings with space
- 2001/02/11 -- Tobi
upgraded to libpng 1.0.9
+ 2001/02/11 -- Jesús Couto Fandiño
spanish translation of rrdtutorial
- 2001/02/11 -- Alex
new well commented reduce_data implementation for rrd_graph
- 2001/02/11 -- Alex
off by 1 fix for data_calc (now the results should be more the way you
expect them to be)
* 2001/02/11 -- Bill Nash <[email protected]>
snmpstats contrib
+ 2001/02/10 -- Christophe VG <[email protected]>
--no-legend option for rrd_graph
* 2001/02/10 -- claus norrbohm <[email protected]>
contrib rrdexplorer (aka clickable rrd graphs)
* 2001/02/10 -- Gilles LAMIRAL [email protected]
contrib rrdview
+ 2001/02/07 -- Tobi
added a standalone version of rrdupdate which is MUCH smaller as it does
not have any of the graphic libs linked
- 2001/02/03 -- Alex
in rrdgraph, CDEF comparisons were returning *UNKNOWN* if one of the
operands was unknown. The correct behaviour is to return false (0)
- 2001/02/03 -- Shane O'Donnell <[email protected]>
make graph to stdout work in win32 (no more crlf)
+ 2001/02/03 -- Tobi
added new CDEF keyword: LTIME this is like TIME but for localtime
it takes the local timezone as well as daylight saving time into account.
- 2001/02/03 -- Tuc <[email protected]>
bsdi3* does not need -fPIC, actually it hates this so much
that it does not compile the IEEE test if its defined. Modified
the ltconfig to treat it like beos, irix when it comes to -fPIC
- 2001/02/03 -- Petr Holub <[email protected]>
add check to configure for -OPT:IEEE_comparisons=ON (cc on IRIX)
- 2001/02/03 -- Tobi & Jakob Ilves <[email protected]>
It seems HPUX does not libraries being built with -fPIC
so I am now trying to test for hpux and will replace any -fPIC in CFLAGS
with -fpic ... hope this helps
+ 2001/02/03 -- Mike Mitchell <[email protected]>
Modified the code for the alternate autoscale to change the scale of the
graph so that at least two major grid lines will be present with
meaningful labels
- 2001/02/03 -- Tobi
added link to bin_dec_hex in tutorial
+ 2001/02/03 -- Tobi
added explanation on % in PRINT to the rrdgraph manpage
+ 2001/02/03 -- "BAARDA, Don" <[email protected]>
explanation on the connection between Step and Heartbeat
added to rrdcreate manpage
+ 2001/02/03 -- Tobi
added special config 'none' to --x-grid and --y-grid options
of rrdgraph.
+ 2001/02/03 -- Tobi & Gilles Lamiral <[email protected]>
added strerror messages to fopen calls
+ 2001/02/03 -- Tobi
added --step option to rrdgraph which allows to set the
dataresolution lower than the graph resolution
+ 2001/02/03 -- Craig Anderson <[email protected]>
allow to fix the exponent for the y axis (--unit-exponent)
+ 2000/11/12 -- Alex
replace dump with info in rrd resize manpage
+ 2000/11/05 -- David Schweikert <[email protected]>
added section on total values to the HOW TO MEASURE part of rrdcreate doc
+ 2000/11/05 -- Tobi
added section on HOW TO MEASURE to rrdcreate doc
- 2000/10/17 -- Tobi
fixed configure ... caching for the IEEE tests was totally broken
= 1.0.28 2000/09/14 -- Tobi
- 2000/09/14 -- Betty Lee <[email protected]>
install rule for perl module was broken
= 1.0.27 2000/09/10 -- Tobi
- 2000/09/12 -- Tobi
fixed xff description in rrd_format.h and added xff to rrddump, rrdrestore, rrdinfo
*
* NOTE if you are generating rrd xml data, you must add the xff parameter now !
*
= 1.0.26 2000/09/10 -- Tobi
* 2000/08/28 -- Joe Miller <[email protected]>
PHP4 Bindings
- 2000/08/21 -- Tobi
rrd_cgi.c parser now uses isspace as keyword separator identification
+ 2000/08/07 -- Tobi
added rrd.rows property to rrd_info
- 2000/08/05 -- Tobi (after discussion on ML)
bsd install does not know -d modified Makefile to accomodate for this
- 2000/07/17 -- Tobi
Rewrote doc entry for --upper-limit in rrdgraph.pod
- 2000/07/13 -- Tobi with lots of debugging help from Patrick Rother <[email protected]>
identified memory leak in rrd_info and RRDs.xs (mortals are cool)
= 1.0.25 2000/07/12 -- Tobi
- 2000/06/26 -- [email protected]
fix for segfault in rrd_info.c ... next->next was not initialized
= 1.0.24 2000/06/13 -- Tobi
- 2000/06/13 -- Michael O'Reilly <Michael.O'[email protected]>
RRDs:fetch was broken ... (missing braces in RRDs.xs)
= 1.0.23 2000/06/12 -- Tobi
* 2000/06/12 -- Bert Driehuis <[email protected]>
Updated contrib/killspike
- 2000/06/12 -- Tobi
RRDs.xs (perl module) error checking was broken after modification
of rrd_error ...
= 1.0.22 2000/06/10 -- Tobi
- 2000/06/10 -- Tobi
added more complexity to IEEE test (sin(0.0) instead of 0.0))
this prevents the tests from being optimized away by some
compilers and thus rendeing them ineffctive ...
- 2000/06/09 -- Tobi
Updated RRDs manpage better examples and correct Error info
+ 2000/06/09 -- Sean Summers <[email protected]>
added RPM rrdtool.spec file
- 2000/06/09 -- [email protected]
added some missing fclose calles to rrd_tune
+ 2000/06/09 -- Sean McCreary [email protected]
created rrd.h for people using librrd directly ...
- 2000/06/09 -- Bruce Campbell <[email protected]>
properly added DS_NAM_SIZE in a few places a number was in use
allow - in DS names
+ 2000/06/09 -- Rainer Bawidamann <[email protected]>
proper parsing for -h switch in rrdtool
+ 2000/06/09 -- Tobi
Added FLOOR and CEIL functions to CDEF
- 2000/06/09 -- Tobi
Make sure the fpmask and setsig defines get passed on the the Makefile.PL
when run ... this should fix some freebsd issues
+ 2000/05/22 -- Albert Chin-A-Young <[email protected]>
by default do not try to modify the compile options of the perl module
this just breaks way to often ... --with-perl-options allows to
override this
+ 2000/05/16 -- Tobi & Sean McCreary [email protected]
added strerror messages to open fails ...
- 2000/05/16 -- Tobi & Sean McCreary [email protected]
remove unnecessary maloc stuff from rrd_error.c
- 2000/05/16 -- Tobi
made .so detectionfor installing the perl module more robust ...
- 2000/05/07 -- Tobi
made sure RRDs.xs returns undef for UNKNOWN values
in rrdfetch results
- 2000/05/02 -- Alex
cdeftutorial ... on example was wrong
= 1.0.21 2000/05/02 -- Tobi
- 2000/05/02 -- Tobi
Added propper patchlevel detection to Makefile.PL. Fight build problems
with perl 5.6.0
= 1.0.20 2000/05/02 -- Tobi
- 2000/04/30 -- Albert Chin-A-Young <[email protected]>
Determine shared library extension via perl Config.pm module
to use when installing RRDs shared library.
- 2000/04/29 -- Tobi
applied patches a b and c to libpng
- 2000/04/29 -- Albert Chin-A-Young <[email protected]>
Removed HP-UX 10.20, 11.00 sections from config/config.h.in as
they are no longer needed (was already removed from configure.in).
Shared library for HP-UX is .sl not .so (lame update to Makefile.in).
Redefine finite in terms if isfinite in config/config.h.in.
= 1.0.19 2000/04/29 -- Tobi
+ 2000/04/29 -- Tobi
upgraded libpng to version 1.0.6
- 2000/04/29 -- Albert Chin-A-Young <[email protected]>
portability cleanup of configure system things now build on
Everything builds on Solaris 2.5.1, 2.6, 2.7/SPARC, 2.7/x86 (without
optimizations turned on for the Sun C compiler), HP-UX 10.20, HP-UX
11.00, and Digital UNIX 4.0D.
= 1.0.18 2000/04/29 -- Tobi
- 2000/04/29 -- Tobi
tinkerd with tcl bindings ... unfortunately then do not
link clean ... any gurus ?
- 2000/04/29 -- Tobi
fixed build process for cases where --enable-shared was given
- 2000/04/29 -- Rainer Nagel <[email protected]>
malloc error in rrdcgi fixed ... - 2 potential segfaults
- 2000/04/29 -- [email protected]
errors in HPUX ifdefs in configure and acconfig.h
- 2000/04/29 -- [email protected]
added perl 5.004 compatibility back to RRD.xs
- 2000/04/18 -- Edouard Lagache <[email protected]>
FileDescriptor Leak in Lazy option fixed
= 1.0.17 2000/04/16 -- Tobi
+ 2000/04/13 -- Tobi (inspired by [email protected])
people keep asking for this ... here you go: rrd_info ... check
the manpage.
- 2000/04/13 -- Tobi
some people just love bsd make ... it almost worked ... now it does.
But please just use gnu make to stay out of trouble
= 1.0.16 2000/04/06 -- Tobi
- 2000/04/06 -- Tobi
added missing rrd_format.h back into the distro .. grrrr
= 1.0.15 2000/04/06 -- Tobi
- 2000/04/03 -- Thomas Parmelan <[email protected]>
alloc error in RPN code of rrd_graph found ... and fixed
- 2000/04/03 -- Tobi
Made tcl install optional as suggested by E. Lagache
- 2000/04/03 -- Simon Leinen <[email protected]>
TCL Build Fix
- 2000/04/03 -- Joe Moore <[email protected]>
configure.in had wrong error message for nan==nan
= 1.0.14 2000/04/02 -- Tobi
- 2000/04/02 -- Tobi
added function prototypes to rrd_graph and rrd_restore
- 2000/04/01 -- Tobi
made perl build more robust
* 2000/04/01 -- Claus Norrbohm <[email protected]>
clickgraph contrib ... interactive data explorer ...
- 2000/03/26 -- Rainer Bawidamann <[email protected]>
fixes for TCL module compilation
rrdgraph dead code ...
+ 2000/03/26 -- Tobi
fetch pic flag from libtool ..
+ 2000/03/26 -- Frank Strauss [email protected]
TCL bindings for rrdtool
- 2000/03/26 -- Tobi
rrd_update should not change its argv string ... this can be
fatal for external processes calling it ..
+ 2000/03/26 -- Poul-Henning Kamp <[email protected]>
made sure the CDEF evaluator does not ever try to compare against NaN
added new CDEF operators MIN,MAX,LIMIT
- 2000/03/26 -- Larry Parmelee <[email protected]>
examples/pipe-demo.pl.in was still using %f instead of %lf
- 2000/03/26 -- Tobi
added some check to free calls in rrdcgi so that we don't free anything
which is already NULL ... freebsd hates this ...
+ 2000/03/26 -- Tobi
Added RRD:GETENV to Pass 1 of rrdcgi (suggested by Jesper Skriver <[email protected]>)
- 2000/02/19 -- Bernard Fischer <[email protected]>
added casting to floating point routines where needed. (get 64bit working)
+ 2000/02/19 -- Bernard Fischer <[email protected]>
added --alt-autoscale-max to autoscale only on the max value.
* 2000/02/14 -- Joey Miller <[email protected]>
contributed php3 bindings contrib/php3
- 2000/03/26 -- Tobi
Removed PL_na reference from RRD.xs ... it does now work with Perl 5.6
+ 2000/03/02 -- Tobi
added many more warning switches to rrdtool
- 2000/03/03 -- Tobias Weingartner <[email protected]>
out of bounds error in OP_PREV processing (rrd_graph.c) fixed
- 2000/02/25 -- Tobi
hpux uses RRDs.sl instead of RRDs.so ... I have changed the Makefile to handle this.
= 1.0.13 2000/02/13 -- Tobi
- 2000/02/13 -- Tobi
restored rrd_tool.h ... got zeroed during the last distro process ...
= 1.0.12 2000/02/12 -- Tobi
* 2000/02/12 -- Rainer Nagel <[email protected]>
contributed rrdfetchnames for getting names of an rrd
+ 2000/02/12 -- Tobi
more documentation on COUNTER/ABSOLUTE/GAUGE ....
+ 2000/02/12 -- Tobi
added try time to build process
- 2000/02/11 -- [email protected]
NT thinks 0 > NaN || 0 < NaN == ture ... fied rrd_update.c accordingly
- 2000/02/09 -- Tobi
added FPMASK and SIG8 fixes to rrd_cgi ... will prevent it from sig FPE crashes
on FreeBSD and others ...
+ 2000/02/08 -- Tobi
Improved \g by giving it the ability to squash empty %s
return values
= 1.0.11 2000/02/06 -- Tobi
+ 2000/02/06 -- Tobi
added formating marker '\g' to rrd_graph to remove
the spacing between two items printed into the graph
- 2000/02/06 -- Tobi
make sure rrd_graph --lazy does not get confused by broken
images.
- 2000/02/06 -- Tobi
applie range check to values supplied to update and not
to pdp values
- 2000/02/06 -- Tobi
fixed rpn parser to allow variable names like nantuket
+ 2000/01/14 -- hendrik visage <[email protected]>
another example for rrdcgi manpage
* 2000/02/06 -- Bert Driehuis <[email protected]>
contrib script to kill spikes from rrd dump
- 2000/02/06 -- steve rader <[email protected]>
fixed 'fetch' example in the RRDs manpage
* 2000/01/10 -- Selena M Brewington <[email protected]>
contributed add_ds a perl script for adding new ds es to existing rrds
* 2000/01/10 -- steve rader <[email protected]>
contributed rrdlastds script ... pulling current values from an rrd
- 2000/02/06 -- Tobi
--goodfor and --refresh did not work for rrdcgi as the arguments never got
passed on. Introduced <RRD::GOODFOR x> command in rrdcgi language to
fix this problem
- 2000/02/06 -- Tobi
using - as input did not work for rrd_restore ...
- 2000/01/26 -- Tobi
pass name of the c compile to the perl build along with the CFLAGS
- 2000/01/26 -- Tobi
Removed special provisions for HPUX from rrd_format ... this might actually help HPUX to get
the NaN problems fixed
- 2000/01/24 -- Tobi
in rrd_graph the data consolidation routine was initializing the with 0 instead of DNAN
this led to rather log MIN values
= 1.0.10 2000/01/07 -- Tobi
- 2000/01/07 -- Bill Fenner <[email protected]>
The Update Bug solved ... rrdtool was in violation of the ANSI
C standard (7.9.5.3) by issuing a fwrite immediately after an
fread without fseek inbetween
+ 2000/01/03 -- Tobi
added <RRD::TIME::NOW function to rrdcgi
- 2000/01/03 -- Tobi
added documentation for <RRD::SETENV to rrdcgi.pod
- 2000/01/03 -- steve rader <[email protected]>
better explanation of lower and upper limit for rrdgraph
- 2000/01/03 -- Tobi
fixed PRINT commands in example scripts
- 2000/01/03 -- Tobi
to test -fPIC actually RUN a program ..
= 1.0.9 1999/12/25 -- Tobi
- 1999/12/14 -- Tobi
use -fPIC when compiling and if the compiuler does not mind ... some platforms
have issues with the RRDs package otherwhise ...
- 1999/12/11 -- Tobi
improved format check in rrd_graph
* 1999/11/30 -- Damien Miller <[email protected]>
rrdproc tool ... run linux interface stats straight from proc into rrdtool
= 1.0.8 1999/11/24 -- Tobi
- 1999/11/15 -- [email protected]
veryfy G?PRINT format strings before executing them ...
- 1999/11/14 -- Tobi
the perl-module (RRDs.xs) does now strcpy its arguments. This fixes some
stray problems where the rrdtool code was modifying argv values (eg.
update --template) and thus backfired into perl proper.
- 1999/11/12 -- Valient Gough <[email protected]>
define STDC in zlib/zconf.h ... rrdtool needs it anyway and
without STDC there will be no prototypes which will be a big
problem for less tolerant compilers ... does any sensible c compiler
not understand prototypes today?
- 1999/11/04 -- Ian Freislich <[email protected]>
better formatting with large values for rrdtool fetch
- 1999/11/04 -- Paul E. Erkkila <[email protected]>
made RRDs work on lates perl betas as well as current ones na -> PL_na
- 1999/11/03 -- Tobi & Alex van den Bogaerdt <[email protected]>
fix for autoscaling problems with UNKNOWN values
- 1999/11/02 -- Tobi
rrdcgi was unable to parse two tags running into each other
if they were of exactly the same type
- 1999/11/02 -- Tobi
moved check for FINITE function on acconfig and configure.in
so that it can use isinf even if it has to be defined first.
- 1999/10/26 -- Fidelis Assis <[email protected]>
modified gd string functions to use unsigned char
- 1999/10/24 -- Tobi
added test for float.h to configure
- 1999/10/24 -- Tobi
Fixed version reporting with rrdtool help
- 1999/10/24 -- Tobi, Blair Zajac <[email protected]> and Tobias Weingartner <[email protected]>
use vsnprintf in rrd_error (max buffer raised to 4096
- 1999/10/24 -- Tobi, Blair Zajac <[email protected]> and Tobias Weingartner <[email protected]>
use MAXPATH to determ max path length for filenames in rrd_graph and rrd_open
- 1999/10/24 -- Stefan Mueller <[email protected]>
better HPUX portability
- 1999/10/24 -- Steve Harris <[email protected]>, Ulrich Schilling <[email protected]>, Joel Becker <[email protected]>, REIBENSCHUH Alfred <[email protected]>
better AIX portability
- 1999/10/24 -- Tobi
Fixed PRINT 1 bug in rrdcgi
- 1999/10/24 -- Tobi
Removed remaining LZW code from our version of gd
* 1999/10/04 -- steve rader <[email protected]>
contributed rpntutorial
+ 1999/10/04 -- steve rader <[email protected]> + Tobi
RRD::TIME::LAST function for rrdcgi
- 1999/10/04 -- Bryan Mawhinney <[email protected]>
improved wording in rrdgraph.pod
* 1999/10/02 -- Alex with help of Steve Rader and others
added CDEF tutorial
+ 1999/10/02 -- Steve + Alex
Large amount of fixes to rrdtutorial.pod, thanks Steve!
- 1999/09/30 -- tobi
fixed --template option in update ... for good this time ?
+ 1999/09/30 -- [email protected], Ulrich Schilling <[email protected]>
first go at makeing it work on AIX
+ 1999/09/30 -- Bill Fenner <[email protected]>
disable fpmask was not propagated to perl module build ...
+ 1999/09/30 -- Bill Fenner <[email protected]>
added PREV function to CDEF language ...
+ 1999/09/30 -- Paul Joslin <[email protected]>
first go at makeing it work on HPUX 10.20
+ 1999/09/30 -- Daniel S. Riley <[email protected]> and Larry Leszczynski <[email protected]> and Clive Lilley <[email protected]>
first go at makeing it work on OSF1 4.0e
- 1999/09/30 -- Bill Fenner <[email protected]>
make sure a filename is supplied in rrd_graph ...