-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCHANGES
7454 lines (5335 loc) · 260 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
RRDtool 1.4.3 - 2010-03-22
==========================
New Features
* rrdcached: Log to stderr (in addition to syslog) when running in foreground.
-- Sebastian Harl
* rrdcached: Added -m command line option. This option may be used to specify
the file permissions of a UNIX socket. The option affects the following
sockets only, i.e., it's possible to specify different modes for different
sockets. -- Sebastian Harl
* rrdcached: Added -s option so set group permissions of the UNIX domain
socket. Obviously this will only work if rrdcached is running as root which in
my case it has to be (as upstart can't currently monitor non-root
daemons). As you may have RRD data sources (data loggers) and RRD
consumers (e.g. CGI scripts) that both need to talk to the cache
daemon one solution is to set the group permissions of the socket.
This offer some flexibility over trying to get every RRD user/daemon
running under the same user context. -- Alex Bennee ajb pitcairn.cambridgebroadband.com
* rrdcached: Let -s affect the following sockets only. This way, it's possible
to specify different groups for different sockets. -- Sebastian Harl
* rrd_create: added --no-overwrite option. It prevents rrdtool from
clobbering existing rrd files. -- Chris - LINX
* ruby bindings: rb_rrd_xport function -- Pavel Pachkovskij pavel.pachkovskij azati.com
* use locale settings and _NL_TIME_WEEK_1STDAY to determine the first
day of the week. Works on Linux at least -- Tobi Oetiker
* rrd_graph: \u to backup one line for special legend placement tricks
-- tobi oetiker
* rrd_update: new (better) checker for incoming COUNTER or DERIVED data. -- Florian
Bug Fixes
* rrdcached: Do not put any code in assert(). -- Sebastian Harl
* add 'm' as a shortcut for 'zoom' in rrd_graph as it was in 1.3
-- Sebastian Harl
* rrd_update: fix for max calculation ... the MAX value of the current
consolidation interval was pre-initialized with the MAX value from the
previous interval (an over optimization). -- Tobi Oetiker
* build: additional dependencies on Makefile to make sure bindings makefiles
get rebuild after reconfig -- Tobi Oetiker
* ruby bindings: reset rrd_state for grapv in ruby bindings -- Sven Engelhardt
* rrd_cgi: make sure that (argv-1)[0] points to something sensible ...
hack to undo the damage caused by a senseless optimization. see bug #251
-- tobi oetiker
* rrd_graph: fix right aligned text -- tobi oetiker
* python bindings: pass DESTDIR to setup.py as --root=<DESTDIR> iff a DESTDIR
was given. --- Bernhard Reutner-Fischer
* rrd_graph: backward compatibility fix - only draw the new type of marker
in the graph legend when called with --dynamic-labels -- tobi oetiker
* rrd_restore: portability fix - sizeof(time_t) is 4 byte not 32 bit -- tobi oetiker
* rrd_xport: The end of the export range should not be adjusted DOWN but UP to hit the
next matching step interval or the response will be one row short. -- tobi oetiker
* rrd_graph: the end time itself is not part of a time range ... this fixes the segfault
reported in #248 -- tobi oetiker
* rrd_restore: teach rrd_restore to be able to read the #text value of <a></a> ... this
fixes problems with blank last_ds entries ... as reported in #247. -- tobi oetiker
* rrd_update: be more diligent in checking the input arguments for rrdtool update and
complain if they are wrong. fix for #243 (and more) -- tobi oetiker
----- Older Changelog --------------------
2009-11-15 11:54 oetiker
* bindings/perl-piped/RRDp.pm, bindings/perl-shared/RRDs.pm,
configure.ac, doc/rrdbuild.pod, rrdtool.spec, src/pngsize.c,
src/rrd.h, src/rrd_cgi.c, src/rrd_create.c, src/rrd_datalang.c,
src/rrd_diff.c, src/rrd_dump.c, src/rrd_error.c, src/rrd_fetch.c,
src/rrd_first.c, src/rrd_format.c, src/rrd_format.h,
src/rrd_gfx.c, src/rrd_graph.c, src/rrd_graph_helper.c,
src/rrd_hw.c, src/rrd_hw.h, src/rrd_i18n.h, src/rrd_info.c,
src/rrd_is_thread_safe.h, src/rrd_last.c, src/rrd_lastupdate.c,
src/rrd_not_thread_safe.c, src/rrd_open.c, src/rrd_resize.c,
src/rrd_restore.c, src/rrd_rpncalc.c, src/rrd_rpncalc.h,
src/rrd_thread_safe.c, src/rrd_thread_safe_nt.c, src/rrd_tool.c,
src/rrd_tool.h, src/rrd_tune.c, src/rrd_update.c,
src/rrd_version.c, src/rrd_xport.c, src/rrd_xport.h,
src/rrdupdate.c: prepare for the release of rrdtool-1.4.2
2009-11-15 11:53 oetiker
* doc/librrd.pod, doc/rrdcached.pod: fix pod syntax
2009-11-15 10:51 oetiker
* branches/1.3/program/src/rrd_tool.c, src/rrd_tool.c: Switch
LC_NUMERIC to C prior to creating rrd_xport output. This makes
sure that numbers are always output with a . and not with a ,
2009-10-30 22:49 oetiker
* src/rrd_daemon.c: clarify rrd_daemon code with JOURNAL_REPLAY
macro -- kevin
2009-10-28 05:15 oetiker
* bindings/perl-piped/RRDp.pm, bindings/perl-shared/RRDs.pm,
doc/rrdbuild.pod, rrdtool.spec, src/pngsize.c, src/rrd.h,
src/rrd_cgi.c, src/rrd_create.c, src/rrd_datalang.c,
src/rrd_diff.c, src/rrd_dump.c, src/rrd_error.c, src/rrd_fetch.c,
src/rrd_first.c, src/rrd_format.c, src/rrd_format.h,
src/rrd_gfx.c, src/rrd_graph.c, src/rrd_graph_helper.c,
src/rrd_hw.c, src/rrd_hw.h, src/rrd_i18n.h, src/rrd_info.c,
src/rrd_is_thread_safe.h, src/rrd_last.c, src/rrd_lastupdate.c,
src/rrd_not_thread_safe.c, src/rrd_open.c, src/rrd_resize.c,
src/rrd_restore.c, src/rrd_rpncalc.c, src/rrd_rpncalc.h,
src/rrd_thread_safe.c, src/rrd_thread_safe_nt.c, src/rrd_tool.c,
src/rrd_tool.h, src/rrd_tune.c, src/rrd_update.c,
src/rrd_version.c, src/rrd_xport.c, src/rrd_xport.h,
src/rrdupdate.c: prepare for the release of rrdtool-1.4.1
2009-10-28 05:15 oetiker
* configure.ac: updated versions to account for rrd cached fix
2009-10-28 05:14 oetiker
* src/rrd_daemon.c: Avoid unnecessary string handling for UPDATE
commands in rrd_deaemon for 20x speed increasse. Only copy as many
bytes as necessary. During journal replay, avoid unnecessary copy
(string is discarded). Bug reported by Thorsten von Eicken Patched
by kevin brintnall
2009-10-27 21:44 oetiker
* src/rrd_tool.c: we have 2009 now
2009-10-27 21:40 oetiker
* NEWS: added links to documentation
2009-10-27 17:55 oetiker
* bindings/perl-piped/RRDp.pm, bindings/perl-shared/RRDs.pm,
configure.ac, doc/rrdbuild.pod, rrdtool.spec, src/pngsize.c,
src/rrd.h, src/rrd_cgi.c, src/rrd_create.c, src/rrd_datalang.c,
src/rrd_diff.c, src/rrd_dump.c, src/rrd_error.c, src/rrd_fetch.c,
src/rrd_first.c, src/rrd_format.c, src/rrd_format.h,
src/rrd_gfx.c, src/rrd_graph.c, src/rrd_graph_helper.c,
src/rrd_hw.c, src/rrd_hw.h, src/rrd_i18n.h, src/rrd_info.c,
src/rrd_is_thread_safe.h, src/rrd_last.c, src/rrd_lastupdate.c,
src/rrd_not_thread_safe.c, src/rrd_open.c, src/rrd_resize.c,
src/rrd_restore.c, src/rrd_rpncalc.c, src/rrd_rpncalc.h,
src/rrd_thread_safe.c, src/rrd_thread_safe_nt.c, src/rrd_tool.c,
src/rrd_tool.h, src/rrd_tune.c, src/rrd_update.c,
src/rrd_version.c, src/rrd_xport.c, src/rrd_xport.h,
src/rrdupdate.c: set version to 1.4.0 for all files
2009-10-27 17:51 oetiker
* rrdtool-1.3-release, rrdtool-1.4-release: create build script for
1.4 release
2009-10-27 17:49 oetiker
* Makefile.am, configure.ac, src/rrd_client.c, src/rrd_graph.h,
src/rrd_restore.c: * remove intl from build process ... someone
who does actually need it should fix this ... * make the code work
on solaris 10 (tested on opencsw server farm. thanks!)
2009-10-27 17:04 oetiker
* src/rrd_client.c, src/rrd_graph.h, src/rrd_restore.c: more solaris
10 portability changes ....
2009-10-27 16:18 oetiker
* configure.ac, src/rrd_dump.c, src/rrd_graph.c, src/rrd_restore.c,
src/rrd_tool.c: remove HAVE_LOCALE_H and HAVE_TIME_H and
HAVE_SETLOCALE since they have not been used consistantly anyway
2009-10-27 16:12 oetiker
* configure.ac: if we use HAVE_TIME_H we should have a check for
this in configure ...
2009-10-27 13:57 oetiker
* NEWS: updated for 1.4 release
2009-10-27 13:54 oetiker
* src/rrd_graph.c: simplify rrd_graph LC_NUMERIC fix so that all
call paramters are affected by it.
2009-10-27 13:13 oetiker
* doc/rrdgraph.pod, src/rrd_graph.c: allow the grid on:off pattern
to be configured
2009-10-27 13:07 oetiker
* src/rrd_restore.c: needs locale.h to compile
2009-10-23 15:58 oetiker
* configure.ac, src: optional software is expected to live in /opt,
so lets follow this custom ... /usr/local is really old school.
2009-10-22 23:22 oetiker
* src/rrd_tool.c: fix memory handling when argument separation in
pipe mode fails. fix for #230
2009-10-20 19:23 oetiker
* src/rrd_restore.c: set locale to C while restoring
2009-10-15 08:42 oetiker
* doc/rrdtutorial.pod: another typo fixed by Justin T Pryzby
2009-10-15 04:47 oetiker
* src/Makefile.am: Removed left-over occurrence of LIB_LIBINTL --
sebastian
2009-10-14 08:04 oetiker
* bindings/perl-piped/RRDp.pm, doc/rpntutorial.pod,
doc/rrd-beginners.pod, doc/rrdbuild.pod, doc/rrdcached.pod,
doc/rrdcreate.pod, doc/rrddump.pod, doc/rrdflushcached.pod,
doc/rrdgraph-old.pod, doc/rrdgraph.pod, doc/rrdgraph_data.pod,
doc/rrdgraph_graph.pod, doc/rrdgraph_libdbi.pod,
doc/rrdgraph_rpn.pod, doc/rrdpython.pod, doc/rrdruby.pod,
doc/rrdtool.pod, doc/rrdtutorial.pod: Fixed various typos in the
manpages. Debian bug #550919. -- Justin T. Pryzby
2009-10-11 16:00 oetiker
* src/rrd_client.c, src/rrd_client.h: load rrd_config.h before
rrd_client.h since its content is expected to be present --
Florian Forster
2009-10-04 21:16 oetiker
* src/rrd_flushcached.c: Fix potential memory leak in
rrd_flushcached during failure. -- kevin
2009-10-04 12:18 oetiker
* CONTRIBUTORS: sebastian was missing from the contributors list
2009-10-04 12:00 oetiker
* src/rrd_graph.c: Do not mess with the locale settings. The main
program takes care of that (rrd_tool.c calls setlocale(LC_ALL,"")
already. We do call setlocale on LC_NUMERIC a few times to get
predictable number formats when parsing strings into floats, but
apart from that the code is written in a portable manner and can
take whatever the local system supports.
2009-10-04 11:48 oetiker
* src/rrd_tool.c: * comment on the reson for calling setlocale * to
not force the message encoding ... messages should be encoded in
the current locale
2009-10-04 11:37 oetiker
* src/rrd_client.c, src/rrd_daemon.c: rrd_client, rrd_daemon: Do not
require hostnames to contain a dot. Non-FQDN (e.g. "localhost")
are now supported as well. Anything that does not start with '['
should be (and is now) treated as <name>[:<port>]. -- Sebastian
Harl
2009-10-04 11:36 oetiker
* src/rrd_client.c: rrd_client: Improved error handling / reporting.
* Report getaddrinfo() errors using gai_strerror(). * Replaced
"Internal error" with a more verbose error message, if available.
-- Sebastian Harl
2009-10-04 11:35 oetiker
* src/rrd_client.c: rrd_client: Do not rewrite path names when
accessing remote daemons. When talking to a local daemon (thru a
UNIX socket), relative path names are resolved to absolute path
names to allow for transparent integration into existing solutions
(as requested by Tobi). However, when talking to a remote daemon,
absolute path names are not allowed, since path name translation
is done by the server (relative to the base directory). --
Sebastian Harl
2009-10-04 11:34 oetiker
* src/rrd_flushcached.c: rrdflushcached: Do not free 'opt_daemon'
before checking the connection. -- Sebastian Harl
2009-10-04 11:33 oetiker
* src/rrd_fetch.c: rrdfetch: Print a usage summary if not enough
parameters have been given. -- Sebastian Harl
2009-10-04 11:32 oetiker
* src/rrd_daemon.c: rrdcached: Handle journal replay in
socket_permission_check(). -- Sebastian Harl
2009-10-04 11:30 oetiker
* src/rrd_daemon.c: rrdcached: Create the base directory on startup.
-- Sebastian Harl
2009-10-04 11:29 oetiker
* src/rrd_daemon.c: rrdcached: Improved the "base-dir symlink
check". The daemon checks if the specified base directory contains
symlinks by comparing the canonicalized path name (by realpath())
with the path name specified on the command line. The GNU libc's
implementation of realpath() removed trailing slashes ('/') from
the pathname. Thus, specifying a base directory with a trailing
slash results in rrdcached aborting, complaining about an invalid
base directory, which is quite annoying imho. Now, trailing
slashes are removed before comparing the two path names. --
Sebastian Harl
2009-10-04 11:28 oetiker
* src/rrd_daemon.c: rrdcached: Improved an error message. --
Sebastian Harl
2009-10-04 11:27 oetiker
* src/rrd_daemon.c: rrdcached: Create the pidfile and (UNIX) socket
directories as well. Those files may be located in a subdirectory
of, e.g., /var/run/. To avoid the need to manually create (and
recreate, e.g. in case /var/run/ is on a tmpfs) that subdirectory,
let the daemon handle the creation of those directories. --
Sebastian Harl
2009-10-01 18:54 oetiker
* src/rrd_fetch_libdbi.c, src/rrd_tool.h: rrd_fetch_libdbi: Fixed
some compiler warnings. While at it, declared some private helper
functions as static. -- Sebastian Harl
2009-09-28 16:21 oetiker
* doc/librrd.pod: Moved rrd_dump_cb_r() to section "CORE FUNCTIONS"
since this is not a utility function but rather part of RRDtool's
core. -- Sebastian Harl
2009-09-28 16:16 oetiker
* doc/Makefile.am: Moved the 'librrd' manpage to section 3 --
Sebastian Harl
2009-09-28 16:16 oetiker
* doc/librrd.pod: documentation for rrd_mkdir_p added -- Sebastian
Harl
2009-09-28 16:16 oetiker
* src/rrd_daemon.c: free config_pid_file after using it for the last
time ... Else, the daemon might either segfault or leave the PID
file around. -- Sebastian Harl
2009-09-28 16:15 oetiker
* src/rrd_daemon.c: try to create missing journal directories rather
than abort with an error. -- Sebastian Harl
2009-09-28 16:13 oetiker
* src/librrd.sym.in.in, src/rrd.h, src/rrd_utils.c: added
rrd_mkdir_p - This function may be used to recursively create some
directory, similar to "mkdir -p" on the command-line. -- Sebastian
Harl
2009-09-24 19:21 oetiker
* src/rrd_restore.c: adjusted copyright wording according to
sebastians suggestions
2009-09-15 12:21 oetiker
* trunk/tutorial/lisa2009/rrd-by-example/body.tex: adapted for 2009
2009-09-15 12:20 oetiker
* trunk/tutorial/lisa2009/abstract-rrdexample.txt,
trunk/tutorial/lisa2009/abstract-rrdtut.txt: initial
2009-09-15 12:17 oetiker
* trunk/tutorial/lisa2009, trunk/tutorial/lisa2009/rrd-intro.odp:
initial
2009-09-01 08:49 oetiker
* NEWS, src/rrd_graph.c: show element type in legend
2009-08-25 09:01 oetiker
* configure.ac, src/rrd_client.h, src/rrd_daemon.c: detect if
stdint.h is available. if not, use inttypes. this should fix #239
and make compilation on solaris 9 work.
2009-08-24 12:04 oetiker
* debian/README, debian/README.Debian, debian/build_freetype.sh,
debian/changelog, debian/control, debian/copyright,
debian/librrd0-dev.files, debian/librrd0.files,
debian/librrd0.postinst, debian/librrd0.postrm,
debian/librrd0.shlibs, debian/librrdp-perl.files,
debian/librrds-perl.files, debian/rrdtool-tcl.files,
debian/rrdtool.files, debian/rules, debian/watch: replae with
pointer
2009-08-24 12:02 oetiker
* src/rrd_config_bottom.h: call fpclass only once when replacing
isnan for solaris
2009-08-22 22:03 oetiker
* MakeMakefile: remove misspellt keyword ...
2009-08-21 05:03 oetiker
* m4/acinclude.m4, src/rrd_config_bottom.h: make sure all elements
required in the definition of isinf are defined in their turn
2009-08-20 22:02 oetiker
* src/rrd_graph.c, src/rrd_tool.c: Trim trailing whitespace, reoder
getopt_long per shortopt char; Fix -D while at it -- Bernhard
Reutner-Fischer
2009-08-19 15:24 oetiker
* NEWS, doc/rrdgraph.pod, src, src/rrd_graph.c, src/rrd_graph.h,
src/rrd_tool.c: The attached patch allows to $ rrdtool graph
--border=0 to disable the 3d border around the image. -- Bernhard
Reutner-Fischer rep.dot.nop gmail.com
2009-08-19 07:44 oetiker
* src/rrd_graph.c: yes this should not matter, but I think it is the
right thing todo ...
2009-08-17 21:34 oetiker
* src/rrd_dump.c, src/rrd_tune.c: added missing prototypes
2009-08-17 21:31 oetiker
* CONTRIBUTORS, doc/librrd.pod, src/librrd.sym.in.in, src/rrd.h,
src/rrd_dump.c: Added a call back interface to rrd_dump to be able
to call the function from c. See librrd.pod for documentation. --
Benny Baumann BenBE geshi.org
2009-08-16 22:22 oetiker
* doc/rrdcached.pod, src/rrd_daemon.c: From: Florian Forster
<[email protected]> This patch introduces
per-socket, per-command permissions to the RRD caching daemon,
RRDCacheD. This allows administrators to limit access to the
daemon in a fine-grained manner. The patch removes the command
line option `-L' and introduces `-P' instead. The option must
appear *before* the `-l' option and the given permissions are set
for all following sockets or another `-P' option. For example:
rrdcached -P FLUSH,PENDING -l 10.2.3.4 -P UPDATE -l
unix:/some/path Allow `FLUSH' and `PENDING' commands to clients
connected via IPv4 networking and `UPDATE' to clients connected
via a UNIX domain socket only. There are a couple of exceptions: -
The commands `HELP' and `QUIT' are always allowed. - If the
command `BATCH' is allowed, the command `.' is automatically
allowed, too. By default, i. e. if no `-P' option is specified,
all commands will be allowed. As a shortcut to reset the behavior
to the default behavior, you can use the slightly hackish `-P ""'
syntax. Signed-off-by: Florian Forster
2009-08-16 22:05 oetiker
* configure.ac: with my Debian Testing box I had to apply the
following small changes to the `configure.ac' file in order to
make `autoconf' happy. Don't know what the problem precisely is ?
m4 and its square parenthesis is too high for me ;) -- Florian
2009-08-16 22:00 oetiker
* autogen.sh: there is no config directory ... so lets not search
for it in autogen.sh
2009-08-11 14:00 oetiker
* branches/1.3/program/src/rrd_restore.c, src/rrd_restore.c: fix
freeing order when generating error messages. found by Dmitry V.
Krivenok
2009-08-10 11:47 oetiker
* m4/acinclude.m4: include math.h when testing IEEE
2009-08-08 14:06 oetiker
* branches/1.3/program/doc/rrd-beginners.pod, doc/rrd-beginners.pod:
remove extra \ in perl example
2009-08-08 09:38 oetiker
* src/rrd_daemon.c: The journal files are time-stamped and replayed
in order. This allows systems with 32-bit signed off_t to write
more than 2GB of journal entries per flush interval. --kevin
2009-08-08 09:36 oetiker
* doc/rrdgraph.pod: add some shell proggramming advice ... Bernhard
Reutner-Fischer
2009-08-08 09:34 oetiker
* src/rrd_daemon.c: Remove PID file later in the cleanup process
--kevin
2009-08-08 09:29 oetiker
* src/rrd_daemon.c: Increment the DataSetsWritten counter before
freeing the RRD values. --kevin
2009-08-08 09:28 oetiker
* src/rrd_daemon.c: The current method may have caused flushes (and
journal rotations) more often than necessary. The problem was
introduced in r1600. --kevin
2009-08-08 09:27 oetiker
* src/rrd_daemon.c: Two-phase shutdown for rrdcached ensures that
values are flushed. Previously, it was possible for the queue
threads to exit before the flush thread completed queueing values.
If running with -F, rrdcached may have crashed due to assertion
failure before writing all values. -- kevin
2009-08-07 06:04 oetiker
* branches/1.3/program/bindings/python/rrdtoolmodule.c,
bindings/python/rrdtoolmodule.c: include PACKAGE_VERSION as
version number for python module to fix #236
2009-08-03 18:51 oetiker
* branches/1.3/program/src/rrd_info.c, src/rrd_info.c: in rrd > 1.3
it's called rrd_info_push ... and not just info_push ...
2009-08-03 18:45 oetiker
* branches/1.2/program/src/rrd_info.c,
branches/1.3/program/src/rrd_info.c, src/rrd_info.c: Show the
index of each data source in the rrd_info output. Patch for #231
provided by Glenn Herteg, GroundWork Open Source, Inc.
2009-07-30 07:57 oetiker
* NEWS: new news
2009-07-30 07:56 oetiker
* src/rrd_tune.c: rrd_tune HW Update Allow to set the smoothing
window (alpha, beta, gamma) to zero. I'm using rrdtool 1.3.8 with
abberant behavior detection from the Brutlag method. I need to use
a week seasonality and no smoothing for the SEASONAL and
DEVSEASONAL. So I use rrdtune in order to set the smoothing window
to 0.0. This calls the set_hwarg(). But this method is also used
to tune the alpha, beta and gamma that can't be set to 0.0 So when
I tune my smoothing window size to 0.0, it returns -1 due to the
if(window<=0.0) then do nothing. I join here a small correction
with a differnent method used to set only the smoothing window
size and allowing it to be zero. -- sylvain.luiset gmail.com
2009-07-28 16:49 oetiker
* configure.ac: update conditional silent-rules
2009-07-14 12:00 oetiker
* src/rrd_daemon.c: Handle race condition for "UPDATE" with new
files. Problem found by Sebastian Harl. Patch by Kevin.
2009-07-12 06:28 oetiker
* src/rrd_daemon.c: Do not trust cache tree pointers after releasing
the cache lock. It's possible that a "FORGET" was issued in the
mean time. -- kevin
2009-07-10 05:52 oetiker
* src/rrd_daemon.c: destroy flush condition variable
2009-07-10 05:51 oetiker
* src/rrd_graph.c: Move <libgen.h> include so we know whether we
HAVE_LIBGEN_H -- kevin
2009-07-09 20:14 oetiker
* doc/Makefile.am, src/rrd_thread_safe.c: Silence automake
portability warnings caused by multiple inference rules. -- kevin
brintnall
2009-07-05 08:41 oetiker
* configure.ac, src/rrd_restore.c, win32/rrd_config.h.msvc: check
for the size of time_t and behave accordingly
2009-07-04 14:51 oetiker
* src/rrd_restore.c: be more careful when converting to string to
time_t ... test if time_t is long long
2009-06-10 19:05 oetiker
* bindings/lua/compat-5.1r5/compat-5.1.c,
bindings/lua/compat-5.1r5/compat-5.1.h,
bindings/lua/compat-5.1r5/compat-5.1.lua: add the real license ...
2009-06-10 12:17 oetiker
* branches/1.3/program/doc/bin_dec_hex.pod,
branches/1.3/program/doc/rrdtutorial.es.pod, doc/bin_dec_hex.pod,
doc/rrdtutorial.es.pod: fix bad pdf links
2009-06-09 19:22 oetiker
* bindings/lua/compat-5.1r5/compat-5.1.c,
bindings/lua/compat-5.1r5/compat-5.1.h,
bindings/lua/compat-5.1r5/compat-5.1.lua: added compat 5.1 license
copied from website
2009-06-08 05:12 oetiker
* branches/1.3/program/configure.ac, configure.ac: make config.h a
symlink to rrd_config.h so that intl/Makefile is happy
2009-06-08 04:56 oetiker
* branches/1.3/program/MakeMakefile,
branches/1.3/program/configure.ac, MakeMakefile, configure.ac:
Relax automake requirements and make 1.11 features optional --
kevin brintnall
2009-06-07 20:48 oetiker
* bindings/perl-shared/RRDs.xs, bindings/python/rrdtoolmodule.c,
bindings/ruby/main.c: fix some missing rrd_flushcached instances
-- kevin
2009-06-07 14:46 oetiker
* bindings/tcl/tclrrd.c: switch to the rrd_flushcached interface
2009-06-07 14:45 oetiker
* src/rrd_cgi.c: consider fgets return value
2009-06-07 14:33 oetiker
* intl, po/Makefile.in.in: do not try to mess with autopoints files
2009-06-07 14:27 oetiker
* src/rrd_open.c: check return value from write
2009-06-07 14:19 oetiker
* src/rrd_daemon.c: check return values of dup and ftruncate
2009-06-07 14:12 oetiker
* src/rrd_fetch.c, src/rrd_flushcached.c, src/rrd_info.c: fix some
warnings
2009-06-07 13:57 oetiker
* intl, intl/Makefile.in: added a copy to svn since it is changed
from the original
2009-06-07 13:53 oetiker
* po/Makefile.in.in: changed from original version, so include it
...
2009-06-07 13:42 oetiker
* Makefile.am, autogen.sh: include libtool with the distro
2009-06-07 11:36 oetiker
* configure.ac: another ID tag
2009-06-07 11:35 oetiker
* Makefile.am, README: more id tags added
2009-06-07 11:34 oetiker
* COPYRIGHT: updated for release
2009-06-07 11:34 oetiker
* COPYRIGHT, TODO: updated for release
2009-06-07 11:20 oetiker
* CONTRIBUTORS: added $Id:$
2009-06-07 11:16 oetiker
* NEWS: initial news
2009-06-02 13:55 oetiker
* branches/1.3/program/doc/rrdupdate.pod, doc/rrdupdate.pod: Mention
that negative time values should be separated by '--' in
rrdupdate.pod -- Sebastian Harl
2009-06-02 05:55 oetiker
* trunk/talks/op5-09, trunk/talks/op5-09/3days-solar-graph.pdf,
trunk/talks/op5-09/active-acache-management.pdf,
trunk/talks/op5-09/active-acache-management.xar,
trunk/talks/op5-09/beamercolorthemetobi.sty,
trunk/talks/op5-09/body.tex, trunk/talks/op5-09/cache-flow.pdf,
trunk/talks/op5-09/cache-flow.xar,
trunk/talks/op5-09/cache-importance.pdf,
trunk/talks/op5-09/cache-importance.xar,
trunk/talks/op5-09/charles.png,
trunk/talks/op5-09/energy_graph.png,
trunk/talks/op5-09/handouts.tex,
trunk/talks/op5-09/n20e-daily.png,
trunk/talks/op5-09/nmn09_200.jpg, trunk/talks/op5-09/pings.png,
trunk/talks/op5-09/presentation.tex,
trunk/talks/op5-09/readahead-fix.pdf,
trunk/talks/op5-09/readahead-fix.xar,
trunk/talks/op5-09/systembelastung.png,
trunk/talks/op5-09/update-schematics.pdf,
trunk/talks/op5-09/update-schematics.xar: initial
2009-06-01 14:01 oetiker
* branches/1.3/program/m4/acinclude.m4, m4/acinclude.m4: Make
rrdtool compile on GNU/kFreeBSD. Fix for Debian bug 494874. Patch
by Petr Salinger.
2009-06-01 13:58 oetiker
* branches/1.3/program/src/rrd_update.c, src/rrd_update.c: make
negative update times work as diescribed in the documentation (-5
is NOW-5seconds) this takes care of debian bug 332766
2009-05-28 05:25 oetiker
* src/rrd_open.c: madvise hints may not be ORed since they are
enumerated ... #224
2009-05-27 16:23 oetiker
* configure.ac: back to 0.14.4
2009-05-27 16:21 oetiker
* Makefile.am, configure.ac: get the latest gettext
2009-05-27 16:03 oetiker
* src/Makefile.am: added gettext.h to dist
2009-05-27 15:00 oetiker
* src/gettext.h: added missing gettext.h
2009-05-27 14:59 oetiker
* po/LINGUAS, po/de.po: we don't have any translations ... so do not
pretend
2009-05-27 14:31 oetiker
* autogen.sh, configure.ac: reduce gettext version requirements
2009-05-27 14:14 oetiker
* MakeMakefile: fix path
2009-05-27 13:39 oetiker
* MakeMakefile, Makefile.am, acinclude.m4, autogen.sh,
bindings/Makefile.am, configure.ac, doc/Makefile.am,
m4/acinclude.m4, po/ChangeLog, po/Makevars, src/Makefile.am,
src/rrd_i18n.h: the get ready for 1.4rc patch * updated to
automake 1.11 with silet build, with this warnings stand out much
better in the build process. use make V=1 to see all as before *
switched from intltoolize to autopoint for gettext support * moved
m4 bits into their own subdirectory --tobi
2009-05-27 13:11 oetiker
* src/rrd_graph.c, src/rrd_graph.h: Only include libgen.h when we
have it. use pbbasename if we do not. Also fixes #223.
2009-05-26 15:25 oetiker
* doc/rrdtool.pod: update flush to flushcached
2009-05-26 15:24 oetiker
* bindings/lua/rrdlua.c, bindings/perl-shared/RRDs.pm,
bindings/perl-shared/RRDs.xs, bindings/python/rrdtoolmodule.c,
bindings/ruby/main.c, bindings/tcl/tclrrd.c: bindings should
invoke new rrd_flushcached (instead of rrd_cmd_flush) -- kevin
2009-05-26 15:20 oetiker
* src/rrd_restore.c: "ulong" is not portable. must be unsigned long
-- kevin
2009-05-26 08:55 oetiker
* doc/Makefile.am: update flush document name
2009-05-26 07:14 oetiker
* src/Makefile.am: rename rrd_flush.c to rrd_flushcached.c in
Makefile.am
2009-05-26 07:13 oetiker
* doc/rrdflush.pod, doc/rrdflushcached.pod, src/librrd.sym.in.in,
src/rrd.h, src/rrd_flush.c, src/rrd_flushcached.c, src/rrd_open.c,
src/rrd_tool.c: resolve the "flush inconsistency": * rrd_flush (a
leftover from when rrdtool was using stream based io) is turned
into a no-op but still exported to preserve library compatibility.
* rrd_cmd_flush (the implementation of "rrdtool flush") is renamed
to rrd_flushcached along with its command line invocation which is
now rrdtool flushcached --tobi
2009-05-25 22:23 oetiker
* src/rrd_restore.c: While restoring, rrd_restore uses between 30
and 40 times as much memory as the size of the rrd file to be
restored. This is due to the use of libxml2 for parsing the the
whole file prior to turning it into rrd structs. This patch
switches rrd_restore to using the xmlTextReader interface for
incremental consumtion of xml files. This reduces the memory
requirements to about twice the size of the rrd file which should
be quite manageable for most cases. The parsing is about 25% less
efficient than with the original libxml2 version of rrd_restore.
This could be in part due to the more liberal use of malloced
memory. Optimizing this is for another day though. --tobi
2009-05-25 06:05 oetiker
* branches/1.3/program/src/rrd_open.c, src/rrd_open.c: only include
utime.h when necessary
2009-05-24 10:31 oetiker
* branches/1.3/program/configure.ac,
branches/1.3/program/src/rrd_info.c,
branches/1.3/program/src/rrd_open.c,
branches/1.3/program/src/rrd_update.c, configure.ac,
src/rrd_info.c, src/rrd_open.c, src/rrd_update.c: * in 1.3:
Changed types used in rrd_file_t from off_t to size_t to prevent:
warning: comparison between signed and unsigned * Misc other off_t
-> size_t changes to prevent signed warning * in 1.3: Added
rrd_dump_opt_r declaration to prevent undef warning * Explicit
cast to time_t of check in rrd_fetch to prevent signed warning *
Added vasprintf path to sprintf_alloc to prevent excessive
mallocing * in 1.3: fixed STRERROR_R_CHAR_P undef warning patch by
Steven Hartland killing multiplay.co.uk
2009-05-22 14:54 oetiker
* src/rrd_update.c: reset errno right befor the call I want to test
2009-05-22 13:55 oetiker
* src/rrd_update.c: inline is something for the compiler to figure
...
2009-05-22 11:32 oetiker
* branches/1.3/program/src/rrd_update.c, src/rrd_update.c: fix error
messages on the road to fix #222
2009-05-21 05:20 oetiker
* doc/rrdgraph.pod: fix text organisation
2009-05-18 14:23 oetiker
* branches/1.3/program/bindings/python/rrdtoolmodule.c,
bindings/python/rrdtoolmodule.c: integrated fix for debian bug
#529291 as supplied by Anders Hammarquist
2009-05-11 21:25 oetiker
* branches/1.3/program/configure.ac,
branches/1.3/program/src/rrd_getopt.c, configure.ac,
src/rrd_getopt.c: fix rrd_getops use of external variables (optarg
and friends) ... most prominently is kills a segfault when using
rrdtool perl bindings on solaris ... thanks to Ihsan Dogan for
helping with tracking this down and providing access to sparc
solaris boxes.
2009-04-29 06:52 oetiker
* branches/1.3/program/CONTRIBUTORS,
branches/1.3/program/doc/rrdgraph_data.pod, CONTRIBUTORS,
doc/rrdgraph_data.pod: added some remarks on CDEF versus VDEF to
the docs -- Pablo Sanchez
2009-04-20 06:48 oetiker
* doc/Makefile.am, doc/librrd.pod, src/librrd.sym.in.in, src/rrd.h,
src/rrd_daemon.c, src/rrd_utils.c: This patch includes utility
functions to support dynamically sized arrays. This simplifies the
code that manages some of the dynamic structures inside rrdcached.
A few data types have been changed to size_t. -- kevin
2009-04-20 06:46 oetiker
* doc/rrdinfo.pod, src/rrd_format.c, src/rrd_info.c, src/rrd_open.c,
src/rrd_tool.h: introduced header_property in info output --
Daniel.Pocock barclayscapital.com
2009-04-17 09:53 oetiker
* branches/1.3/program/src/rrd_tool.c, src/rrd_tool.c: add
documentation for graph-render-mode
2009-04-15 07:05 oetiker
* branches/1.3/program/src/rrd_restore.c, src/rrd_restore.c: fix
comments and error messages in rrd_restore patch
2009-04-15 07:02 oetiker
* branches/1.3/program/src/rrd_restore.c, src/rrd_restore.c: Fix
casting issues in rrd_restore. The bug manifested when compiled on
sparc v9 as explained in #218. Patch based in input provided by
poster of #218.
2009-04-14 13:55 oetiker
* branches/1.2/program/bindings/ruby/main.c,
branches/1.3/program/bindings/ruby/main.c, bindings/ruby/main.c:
make ruby bindings compile with newer ruby versions ... fix for
#217 patch provided by rrd trac user.
2009-04-14 07:51 oetiker
* branches/1.3/program/bindings/perl-piped/RRDp.pm,
bindings/perl-piped/RRDp.pm: Generate an error message when using
RRDp with graph - this can not work reliably. (Debian Bug#251701)
-- Sebastian Harl
2009-04-14 06:10 oetiker
* src/Makefile.am, src/librrd.sym.in.in, src/rrd.h,
src/rrd_daemon.c, src/rrd_open.c, src/rrd_restore.c,
src/rrd_utils.c: rrd_random() is a wrapper around random() that
ensures the PRNG is seeded exactly ONCE per process. rrd_utils.c
is introduced for functions that do not have a better home.
--kevin
2009-04-10 08:52 oetiker
* src/rrd_daemon.c: This patch consolidates several aspects of the
command handling in rrdcached: * all commands, help, and context
information is reduced to a single data structure. * all checks
for command validity (context and permission) are handled in the
main dispatch routine This removes duplicate help/syntax text, and
long if..elseif..else chains. It facilitates the addition of new
commands. -- kevin