forked from munin-monitoring/munin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2652 lines (2379 loc) · 124 KB
/
ChangeLog
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
-*- text -*-
munin-2.0.4, 2012-07-30
Summary:
* fixes for munin-graph
* fixes for df_inode plugin
Detailed Changelone
Diego Elio Petteno:
master: fix relative paths when using cron-based page generation.
munin-graph: do not output text meant for CGI.
munin-graph: use INFO for further details during execution.
munin-graph: use the same default (non-cgi) as the rest of the Master.
Steve Schnepp:
Makefile: add a comment about JCVALID
Stig Sandbeck Mathisen:
Ignore reiserfs in the df_inode plugin
Make df_inode plugin more robust.
Add missing regular expression anchors
munin-2.0.3, 2012-07-24
A quite raw output of 'git shortlog' :
Christian Ruppert:
nginx_{request,status}: include Munin::Plugin to fix version identifier.
Christoph Biedl:
fix bug that disabled gfx CGI caching
Dan McGee:
Force usage of the DM5 Date::Manip backend
Don't remove Defaults.pm when invoking build-common target
Expand list of filesystems excluded in Linux df_inode plugin
Daniel Kahn Gillmor:
slony_lag_: allow >1 subscribers
Diego Elio Petteno:
ifx_concurrent_sessions_: allow ps and pgrep to be in /bin as well as /usr/bin
build: only move adv files if building on HP-UX.
build: install TTF files as non-executables
config: respect LIBDIR override.
build: only install Java plugin files if JCVALID=yes
df: exclude cgroup_root filesystem type as well.
Add build-doc-stamp to .gitignore.
master: bring back checks for graph_strategy set to cron.
Jeremy Olexa:
config: make sure to translate correctly for C-locale only
Steve Schnepp:
fix munin-graph typo in opening $graph_fh
port multigraph_complex to pure POSIX shell
doc: add "supersampling" plugins
doc: adding supersampling section
doc: changing markup
use cgiurl_graph config in dynazoom.html
use environment var for rrdcached
revert to the same naming than 1.4.x
makefile: added a comment on LANG
node: only use basename for $0
Makefile: move default rule to be the 1st one
directly compile to output dir
git: ignore more build assets
Stig Sandbeck Mathisen:
Add documentation for writing a munin plugin.
Correct reStructuredText syntax warnings
Remove references we do not have targets for yet
Document the munin node
Add information about authorized_key hardening
restructure documentation, work in progress
Whitespace cleanup in the doc tree
Add munin-cgi-graph manpage
Add munin-cgi-html man page
Order the man pages alphabetically
Use correct reference
Set a max depth for the table of contents
Rename the graph aggregation directory appropriately
Write proper man pages, and ensure "make man" creates them
Add better description on the main index pages
Add a directory reference page
Remove plugin/aggregate, we have a replacement in examples/graph/aggregate
Clean up table of contents in reference/
Add "how to use plugins" page
Add munin-check man page
Add markup and links for the supersampling doc
munin-2.0.2, 2012-06-29
Summary :
* munin-graph can be called again from cron
* workaround "root" field name bug
* initial doc/ subdir. will be munin book
* emits percent in log about errors
* various bugfix
munin-2.0.1, 2012-06-10
Well, first bugfix release.
SCM has moved from svn to git.
Commits by luke, mwest, steve.schnepp, ssm
Summary :
* remove .storable files if they are unreadable.
* change version strings to match git workflow
* fix perms on state dir (D: closes #675593)
* swallow stderr in cmd and ssh transport
* remove the graph field in munin timings plugin
Major enhancements to munin-async :
* rename of the process names, it is now munin-async(d).
* implement automatic cleanup
* implement metadata, for the spool to be self-descriptive
munin-2.0.0, r4900, 2012-05-30
It is 2.0-rc7, code wise. Only edited the mandatory doc files
(Changelog, UPGRADING, ...)
Here is a very short summary :
* CGI graphing is the way to go as munin-graph is no more
* Native SSH transport
* Native IPv6 transport
* Full rrdcached support
* Graph zooming
* Arbitrary precision down to 1 sec (needs 2.0 plugins)
* Asynchronous polling support (still experimental)
Full summary is in Announce-2.0 and the detailed changelog is below,
scattered in the various pre-2.0 versions.
munin 2.0-rc7, r4882, 2012-05-23
Commits by kenyon, steve.schnepp, ssm
Summary :
* Fix regex when $serv has some "-" in it (like dm-2). Closes #1218
* munin-node: sets $PATH to a secure value. (Closes #863 and #1128)
* munin-cgi-graph: Add & to the list of "good" chars, since it is used in $ENV{QUERY_STRING} (D: Closes #674148)
* munin-limits: fix for UNKNOWN on DERIVE (Closes #1203, #1221)
* munin-limits: fix --host option
* munin-limits: fix on hosts with multiple levels of domains
munin 2.0-rc6, r4839, 2012-05-07
Commits by kenyon, knan, matthias, runesk, steve.schnepp, ssm
Summary :
* hddtemp_smartctl: just use the device name as the labels
* Update our website address in various files
* Add explicit license for all plugins. (D: Closes #670428)
Many bugfixes in munin-cgi-graph :
* If url parameters are not valid, send HTTP 404 instead of 500
* Remove the use of tempfiles. (D: Closes #668778)
* Move the generation of png via cgi under /var/lib/munin/cgi-tmp/ (D: Closes #668536)
* Don't cache URL with parameters anymore, and don't keep uncached URLs (D: Closes #668667)
* Validate the url chars. (D: Closes #668666)
* Add a max setting for cgi image size. (D: Closes #670811)
munin 2.0-rc5, r4795, 2012-04-11
Commits by kenyon, steve.schnepp
Summary :
* Adding the current action to the command line. Useful for debugging.
* Adding a new URL param full_size_mode to enable predictible IMG sizes
* Enable sparklines with the url param "only_graph"
* Start RRD just before first update. To avoid a very costly 1st update.
* Emit the hosts in a sorted order, instead of somewhat random.
* Do not emit png list if file handle is not defined. (D: Closes #666759)
* Add old option of --force-root, but with a new name. more explicit (D: Closes #601371)
* We dont generate the png list when using cgi html.
* Remove warning when asking "list" w/o a hostname (U: Closes #907952)
* Many bug fixes (Closes #967, #1210) (D: Closes #583189, #568511, #475078, #666759)
munin 2.0-rc4, r4770, 2012-03-24
Commits by holger
Summary :
* Fix important typo
munin 2.0-rc3, r4760, 2012-03-23
Commits by kenyon, steve.schnepp
Summary :
* Fix issue that CGI HTML doesn't refresh itself
* Fixed plugins to use the default draw style
* Also remove \r when reading config/fetch output. (works around bad behavior from munin-node-win32)
* Various plugins fixes (closes #798, #663965, #595697, #648891)
munin 2.0-rc2, r4709, 2012-03-09
Commits by kenyon, steve.schnepp
Summary :
* Import rrdmove into contrib/ as rrdcopy
* Revert the Munin::Common fix as it disturbs the deb build
* Various plugins fixes by kenyon
munin 2.0-rc1, r4638, 2012-02-07
Commits by kenyon, steve.schnepp
Summary :
* Fix Munin::Common (closes #1036)
* Document the fact that Munin needs at least Log4Perl 1.18 (closes #969)
* Colors can now also be specified by an index of the palette (closes #1186)
* Some plugins don't follow LC_ALL spec, so setting LANG=C also. (closes #1014)
* Rewrite of fw_conntrack and fw_forwarded_local (closes #843, #725)
* Various fixes & typos
munin 2.0-beta7, r4600, 2012-01-21
Commits by kenyon, mha, tv, holger, steve.schnepp
Summary :
* Spoolfetch uses _node_read_fast() now : 3MiB is now read in 2 s instead of 7 min.
* Fix for the images when browsing in 'categories' view to be clickable.
* Fixing the png generation, in order to have 1px per RRA sample. (closes #1184)
* Fix for nested nodes
* single_value is wrong for some multigraph, disabling it for now
* new plugin : (haproxy_ng multigraph plugin for haproxy)
munin 2.0-beta6, r4544, 2012-01-14
Commits by kenyon, mha, holger, steve.schnepp
Summary :
* Rewrote the timeout handling code. The default node timeout is now 1 min.
* Various bugfixes since 2.0b5
munin 2.0-beta5, r4508, 2011-12-7
Commits by knuthaug, ssm, bldewolf, tv, kenyon, janl, ligne, kristian, holger, steve.schnepp
Summary :
* Resurrecting munin-graph in a quite raw form
* Set max_process default to 16
* Small performance improvements
* Memory leak fixes (use weak reference for upper nodes)
* Spoolfetch enabled nodes may send nothing.
* Various code cleanups
* Various bugfixes since 2.0b3
munin 2.0-beta4, r4306, 2011-8-2
Commit by steve.schnepp
Summary :
* fix issue with cgi html
munin 2.0-beta3, r4256:4298, 2011-8-1
Commits by janl, ligne, steve.schnepp
Summary :
* HTML/CSS enhancements
* munin-async-* enhancements
* IPv6 enabled munin-node
* Small munin-html performance improvements
* Small plugins improvements
* Various bugfixes since 2.0b2
munin 2.0-beta2, r4199:4252, 2011-7-3
Commits by bldewolf, steve.schnepp
Summary :
* Full integration of Munin with rrdcached
* Fixed multigraph to be able to have multiple levels
* Using Storable instead of a binary DB
* Create a node.d.debug subdir
* Various other bugfixes since 2.0b1
munin 2.0-beta1, r4124:4199, 2011-5-29
Commits by bldewolf, feiner.tom, jo, jorne, kristian, ligne, mha, runesk, ssm, steve.schnepp
Summary :
* Avoid memory leaks in munin-cgi
* Enabling the generation of RRD with a different step size (eg: 10s instead of 5 min)
* Various other bugfixes since 2.0a2
munin 2.0-alpha2, r3856:4124, 2011-1-19
Commits by bldewolf, feiner.tom, janl, knan, ligne, mha, ssm, steve.schnepp, lupe, jorne
Summary :
* Huge performance boost
* munin-graph is over, cgi graphing only from now on
* Enabling CGI HTML with an reworked UI
* use a binary DB to store spoolfetch timestamps (fixes growing file bug in 2.0a1)
* documentation cleanup
Enhancements :
* Better node side timeout error message allowing things to be found out if needed
* Properly label the bgbouncer queries-per-second graph.
* Properly return undef when the SNMP client returns noSuchObject instead of setting an error.
* munin-node: Insert a reset_timeout() call to enable the master to get in a word in edgeways after a slow plugin has executed
* munin-html: Start using fork to save some wall-clock time. Option --fork us now active and max_html_jobs is recognized by munin-html as the maximum number of paralell processes.
* Actually recognize max_html_jobs as a config parameter
* Add the publication part
* Clean up Perl warnings due to use of undefined variables in two functions in LimitsOld.pm.
* looking at the Net::SNMP doco, -username cannot be '' (it must be between 1 and 32 characters).
* The time of munin-graph is over, cgi from now on
* since pollers are now being respawned if they fall over, the shutdown-spooler signal handlers need to be removed before starting any poller up.
* Cleanup of munin-cgi-graph:
- Make it log right
- Make it fast (now <0.1s pr graph on reasonable hardware)
- Remove $config deep copy, it is too expensive, we need to fix
expand_specials instead.
- BUG: Broke --pinpoint processing
* Munin::Master::Utils:
- Replace some often used REs with string matches for speed. Helped
speed up munin-cgi-graph quite a bit. Introduced munin_dumpconfig
to help debug the expand_specials issue
- Introduce munin_find_node_by_fqn to do faster lookups of things
to graph.
* Munin::Master::GraphOld:
- Restructure a bit to avoid double loading of $config (in
cooperation with munin-cgi-graph) and make it possible to pass
some graphing options (--only-fqn for example) in some new places.
- Propper logging the right way
- NOTE: All code relating to host and service filtering and looping
should be removed soonish - we're only using the FQN to find our
work now.
* Replacing 'echo -n', which is implementation-defined - with printf, which is posix
* munin-update: Add local URI scheme to enable running async collector directly on the master as this may somehow enable push-to master. Closes #981, thanks to jorne
* ALWAYS dumps the RRD cmd used when an error occurs when RRD::graphing
* Add some extra HTTP Response Headers
* JMX refactoring by Joachim Sauer
* add some external tools to ease a Storable datafile
* Enabled multigraph capabilities for the munin-async-server
* Re-work filtering in linux df plugin to be much more flexible.
* Force lpstat to C locale instead of EN_us.
Various bugfix (not exhaustive) :
* ${graph_period} substitution should happens in graph_title & fieldname (closes #881, thx stavros)
* bugfix for mkpath on 5.8.8 (closes #992) -- thx Matthew Kent
* fixes #991 (munin-update constantly thinks config has changed), thx mkent
* Better checks for undefs in munin-limits (#973)
* IPMI plugin now graphs power usage as well (#954)
* Fix swap usage numbers in the sunos memory plugin (#696)
* Make exim_mailstats plugin behave properly after initialisation (#985)
* Fixed a bug where all services in a category were colored when a service had a warning or critical state
* Clean up field names in the bonding_err_ plugin on linux (#962)
* Cosmetic cleanups in snmp__if_multi plugin (#1008)
* The snmp__if_multi plugin now makes proper use of 64bit counters if available (#1006)
* The linux plugin selinux_avcstat now uses integers instead of floating points (#1005)
* freebsd/coretemp - rrd doesn't do celsius/fahrenheit
* Fix autoconf in the nfs_client plugin for linux nodes (#1015).
* Fix issues with plugin names with - in them.
* Make linux df plugin not die when it encounters a mountpoint it can't access (#940)
* snmp__df - avoid division by zero
* gets it working for net-snmp snmpd on a ubuntu 10.04 lts desktop with fuse mounts
* Fix up Solaris's if_ plugin.
* Low max_processes leads to hosts being skipped (closes #990) -- thx Matthew Kent
* Make the mysql_ plugin better at parsing innodb output (#956)
* Change call to mkpath to call to Utils module, resolving an issue with old perl (ticket #992)
* snort_* : merge fix from branch 1.4 to trunk
New plugins :
* add plugin : snmp__df_ram plugin
* add plugin : PostgreSQL 9.0+ streaming replication lag
* add plugin : linux/proc - for graphing information about groups of processes.
Removed plugins :
No one was disappointed :-)
munin 2.0-alpha1, r3400:3856, 2010-7-14
Commits by bldewolf, feiner.tom, janl, knan, ligne, mha, ssm, steve.schnepp
* Enhanced CGI (CGI::Fast, direct call to GraphOld.pm, cgitmpdir)
* Ability to zoom in or out graphs
* fixed comparison pages in CGI mode as (closes #831)
* hostname checks are case in-sensitive now : every hostname is converted to
lowercase before use (closes #450)
* Implementation of dirtyconfig (fixes #836), upgraded df plugin as an example.
* custom format, per field/plugin, for graph_data_size
* Add update_rate with optional "aligned" suboption to align RRD updates
to granularity (avoids fractional for integer gauges)
* SSH native transport (closes #842)
* handle the last line of multiline options (fixes #855)
* modify how varnish_ autoconf checks for the varnishstat executable. (closes
#873)
* use STDERR if cgi cannot open logfile (closes #874)
* Add comments to the extremely long regexes in the sensors plugin.
Many thanks to Noga Gazit for the patch adding the comments! (attached in
debian bug http://bugs.debian.org/573613
* Fix sensors plugin parsing of Voltage, which needs to allow for whitespace
at the begnining of the line. Debian bug: http://bugs.debian.org/573613.
Thanks to Arthur Liu for the patch!
* load $config once when using FastCGI, use Storable::dclone to deepclone the
$config, in order to make .sum work again (see #894) (thx Jani M.)
* Remove iso-8859-1 degree character from the example output from sensors,
as it is ran with LC_ALL=C
* prevent a spike in the graph after Amavis is restarted. Thanks to claudius
for the patch. (closes #889)
* set Net::Server's syslog_ident parameter, so log lines have 'munin-node' as
the process name, rather than the significantly less useful 'net_server'.
closes #789
* fix warnings when running under certain versions of perl, caused by
exporting an undefined variable to the environment. thanks to Aleksandar
Lazic (al4711) for the patch. (closes #896)
* fix bug where snmp__netstat plugin can massively undercount the number of
connections.
* add a $Munin::Plugin::SNMP::DEBUG variable, which is an alias for
$Munin::Plugin::DEBUG, so that SNMP plugins can automatically have debugging
turned on when MUNIN_DEBUG environment variable is enabled.
* update snmp__rdp_users plugin to use M::P::SNMP, and document it.
* node.d/df* minor spring cleaning
* processes plugin - implement autoconf
* Add --pidebug to munin-node-configure. If PIDEBUG isn't defined,
Node/Service.pm complains about uninitialized values.
* Fix TLS, resolving several bugs.
* Uptime should not scale, as it makes it hard to read after 1000 days of
uptime. Thanks to Wakko Warner for noticing this (http://bugs.debian.org/575180)
* strip the carriage return on the end of the capabilities list, if it exists.
needed when debugging using telnet. closes #902.
* Add plugins to monitor prepared transactions in PostgreSQL
* Add a authors file for the buggers that use svn-git
* add an experimental test script, that checks the POD sections embedded in plugins (as used by munindoc).
* remove dependency on perl-5.10. (munin tries to be 5.8 only)
* fixes on mysql_isam_space_
* extend M::N::SNMPConfig to support SNMPv3 scanning.
* munin-async-[client|server]. A proxy for async polling of the localhost's munin-node
* defer JCVALID evaluation to runtime, since $(JC) can be redefined later in a
specific Makefile.config. The core Makefile.config serving as a
Makefile.default in this case.
* delete some obsolete tests.
* Remove Bashism - Thanks to Raphael Geissert for pointing this out (bugs.debian.org/581126)
* Adding a pure debugging munin-node
* enable vectorized multiple-time updates
* upgraded README to new website
* get rid of unused variables, and needless initialisations.
* first draft of a perlcritic policy.
* Always start RRD 10 years ago to be able to spoolfetch in them. Otherwise we can only rewrite 10s of history.
* more tests for m-n-c internals.
* start to turn Munin::Node::Service into a "proper" class, rather than a bunch of static methods.
* Include the name of the database in the graph title for PostgreSQL
wildcard graphs.
* start to migrate munin-run to instance-based M::N::Service
* update munin-node to use a M::N::Service instance.
* add $Id$ keywords where missing.
* allow # characters to be included in config files, as long as they're preceded by a backslash
* avoid spamming the logfile with debug messages.
* create a directory for storing spool files.
* spoolfetch support for M::N::Server.
* postfix_mailstats.in: $logfile was being redefined, causing problems during autoconf.
thanks to Lupe Christoph for the patch. fixes #930.
* Addition of munin-sched
munin 1.4.4, r3276,3379, 2010-2-26
* Localization problem in 1.4.1 (closes #781)
* Sort plugin configuration file order. This ensures some predictability
regarding where a configuration setting comes from when multiple files
specify the same configuration variables.
For details, see debian bug http://bugs.debian.org/564098
* munin-cgi-graph*: cgi semaphore fix, hopefully cures #834
* Munin/Master/GraphOld.pm sum+colour fix (closes #731)
plugin to connect to a separate munin-node (or other daemon speaking the
munin-node protocol) and fetch values from there.
* munin-update: Fix config line continuation hadling
* Add patch from munin ticket #828, to suppress "occasional" unknown states
to avoid alerts. Thanks to Steve Wilson for the patch!
* proxy_plugin: New proxy plugin, that makes it possible for a single Munin
* jmx/Uptime: decimal days, not integer - closes #815
* nvidia_: fix suggest
* linux/vserver*: fix autoconf exit codes
* linux/ip_: RE fix to be able to match IPv6 addresses
* linux/selinux_avcstat: New plugin from Lars Strand showing selinux stats
Taken from Muninexchange. Thanks to Lars!
* linux/lpar_cpu: A plugin to measure IBM PPC hardware virtualization logical
partition CPU usage (made for the platform once called OpenPower)
* varnish_: backend_unhealthy is a DERIVE value, note that canonical upstream
is the varnish project
* Add simfs" to linux df* plugins ignore list
* linux/buddyinfo multigraph plugin by Gábor Gombás
* Remediate patches from Gentoo that never came upstream.
Prevents possible output on stderr in plugin linux/iostat_ios and corrects
linux/fw_forwarded_local to handle a missing /proc/net/ip_conntrack
linux/fw_forwarded_local: need to dereference the _conntrack_file variable
* linux/diskstats: Upstream update, closes #838 #835 #837
* linux/ip_: Better matching of IPv6 addresses. Use a single awk command
instead of a mix of awk and grep.
* mysql_: fix graph_base error (Closes #840) Patch from Gábor Gombás
* mysql_: plugin suggests wrong values (closes #857)
* linux/selinux_avcstat - exit 0 on autoconf
* linux/tcp: Add contributed plugin from Tim Small
* linux/df_abs: multiple filesystem excludes do not work in df_abs
Thanks to Daniel Reichelt for the patch!
* snort*: Add documentation and minor updates
* multips_memory: correct printing out raw fieldname,
instead of clean_fieldname, documentation updates
* linux/df_abs: Added configuration option to df_abs to Enable/Disable the
graph total (The default is on). Thanks to Daniel Reichelt for the patch,
submitted at http://bugs.debian.org/567895 - adapted, tested
and documented by Tom Feiner
* snmp__if_multi: Add env.ifTypeOnly filtering, fix multiple buglets
* mailman: Corrected incorrect use of $MUNIN_PLUGSTATE in mailman plugin
* amavis: Change amavis mktempfile function to run with backticks instead of
$(command) as it doesnt work correctly piping to sed
* exim_mailstats: exim_mailstats doesnt count Completed properly.
Thanks to Wakko Warner for noticing this in http://bugs.debian.org/569621
* Deprecated tomcat plugins: Fix in to work properly when only one connector
is availabe http://bugs.debian.org/543523
* postfix_mailstats: Fix shell->perl syntax in perl plugin
* apt: update description with a pointer to apt_all
* jmx/GCCount - fix negative counts on jvm restart (closes #852)
* ping_: fix obvious typo (closes #854)
munin 1.4.3, r3232:3274, 2009-12-30
* linux/diskstats: New multigraph plugin to replace diskstat_ - more
tidy and more efficient. Thanks to Michael Renner for the
deveopment of this and porting to multigraph
* linux/cpuspeed: Specify "average" for the speed, switch to printf to
get numbers printed in full, E notation looses significant digits
and there are whispers of a bug in the E notation handling in
munin-update
* Make munin-update --nofork not die when nodes are unavailable. Closes #800.
* hddtemp_smartctl: Multiple enhancements:
- document how to set type_ for sata drives
- document need to run as a user with device access
- Support some debugging
- detect if smartctl fails
- detect if no recognized temperature output is present
* lpstat: Warn if the predefined $lpstat executable is not executable,
Make lpstat path configurable and search for it in likely places if
it's not set. Patch from Lupe - thanks! Closes #826.
* dhcpd3: Only emit .max if the .max is valid. Document a bug from
the trac - adresses but doe not close #829. Patches for a complete
fix welcome.
* More specific test for watermark feature (1.2.13 required)
* Make 0755 default permissions for $DBDIR and make consistent in
Makefile and munin-check
* Fix issue where far too many mails would be sent by munin-limits
(fixes #795)
* munin_stats: Fix a typo in the "no"-message that made
munin-node-configure reject it.
* linux/yum: Enhance statefile error message. Update to use M::C::Defaults
* linux/vserver_*: Add autoconfiguration (patch from #811 submitted by
proppy, closes ticket).
* munin-update: Make true check into defined check to avoid dereferencing undefs
* Munin::Plugin:
- Better documentation of new default state file name.
- In need_multigraph, if run from a tty with "config" or no arguments
advice to use munin-run and exit.
* mailman: User contributed patch to make plugin work better the first
time. Also replaced "exit $n" with "die" with good error messages.
Untested but perl says syntax ok.
* hddtemp_smartctl: Added chomp, as it won't work with a newline at
the end. Thanks to Ingvar Hagelund for pointing this out
* munin-update: Suppress warning "Error reading includedir directory"
in case the includedir is empty (which is the case in new
installations. This caused cron to send these messages all the time
* Munin::Master::GraphOld: warn_min/warn_max typo fix
munin 1.4.2, r3167:3231, 2009-12-16
* Munin::Plugin::Pgslq: Clean the fieldnames before returning them, so
we don't generate invalid data with for example a dash in the
database name.
* jmx_: Add authentication support, fix exceptions in various memory
related parts, refactor connection negotiation to one central
connection class, add default connection info for jmx_, so we
actually are a bit autoconfy
* munin_update: Update to work correctly with 1.4, document and enhance a bit
* munin_stats: Provide better graph_info and set some warning and
critical levels at 4 minutes and 4m45s
* Improove colors contrast in jmx plugins which have Max area, to make
them more readable + fix some indentation
* ntp_offset: make info into graph_info
* Munin-(node|run): Make group name resolution lazy, enhance error
messages and reinstate the group foo,(bar) syntax
* munin-(node|run): Set umask to 0002 so that state files are group writable
INSTALLERS: chmod g+w on the files in your state directory
(/var/opt/munin/plugin-state in a default install)
* multips_memory: New plugin graphing the sum of the memory usage of
different processes matched by regular expression.
* Perl modules should not have x bit set: Remove on *Old.pm
* munin-update: Make I/O timeout fatal to terminate
munin-update<->munin-node communication otherwise the two parties
falls out of phase (or we need to introduce a RESET command or close
and reopen node connection, but I don't want to do that, esp. not
now). Handle the fallout of making it fatal.
* linux/load and linux/cpu: Correct warning/critical documentation
* postgres_querylength_: Fix query that can never have worked...
* Switch fonts to DejaVuSans og DejaVuSansMono. Vera is now obsoleted
by DejaVu in most contexts.
INSTALLERS: On platforms with RRD 1.3 the fonts need not be removed
and no paths need to be installed as long as the DejaVuSans font
family is installed.
* Reorder somewhat to get lines on top of areas
* Patch from blueyed to make munin-*cgi-graph work
* snmp__if_multi: Only set .max if the interface speed has been obtained
* mysql_: always exit 0 on autoconf
* dhcpd3: re-fix deprecated non-0 exit on autoconf
* add freeradius plugins from Alan DeKok and adapt better for munin-trunk
* linux/df_inode: Small pod correction and add debugfs to df_inode exclude list
* linux/df: Added debugfs to df.in exclude list
* Apache plugins: Exit with proper error of LWP::UserAgent not
found. This can happen if someone configured the plugin manually, or
if the plugin is installed when LWP::Useragent is installed and
passes autoconf, but sometime later LWP::Useragent is
removed. Without this patch the error message is confusing: Cant
locate object method "new" via package "LWP::UserAgent" This also
keeps autoconf output sane even if LWP::Useragent is not available
* linux/ip_: Actually support ipv6. Munin does actually handle : in
plugin names right
* make rpm does not work and won't work. Remove makefile target and
spec file. Might be added back later.
* There are no new autoconfiguring plugins in this release.
munin (1.4.1, r3116:3166, 2009-12-04)
* munin-node: Introduce a select loop to read from plugin
output/errors and avoid locking up
* munin-node: Plugins that time out must not be added to service list
* Looked into making sunos/memory use kstat but that's a hack of more
than 30 minutes, so document dependence on top instead
* hddtemp_smartctl: make it quiet on systems that lack smartctl
* sunos/iostat plugin now works
* linux/load: Correct documentation on how to set warning levels
* sunos/load: Set more graph_ things, including graph_scale no to
avoid "milliload"
* Update exim_mailqueue plugin to use exiqgrep instead of exim, closing #780
* sunos/df*: Add handling of /cdrom and /media mount points (ignore them)
* M::M::Utils: Remove the "*BUG*", it is wrong and worrisome
* linux/df*: Reinstate the warning and critical levels. Document how
to set them.
* munin-graph: Correct ordering problem in command-line.
AREA|LINE/STACK sequences must not be interrupted by HRULEs and
such (broke graphing of old cpu plugins)
* munin-graph: warning lines without range endpoint gets better detection.
* linux/df: Reinstate the default filesystem filling limits. Document how to
set them.
* linux/if:
* Munin::Plugin: Support default values for warning and critical levels.
* munin-*cgi-graph: Untaint the whole hostname, not only the first
occurance of something unholy
* Munin-*cgi-graph: Let "." be legal in hostnames.
* munin-graph: Recognize "max_graph_jobs" in the configuration instead
of logging errors
* Also add munin_cgi_graph_jobs to the legal keywords
* make tar now produces munin-$VERSION instead of using underline between
* linux/if_: This change prevents the linux if_ plugin, when run as
non-root, from leaking stderr output from ethtool to the log.
* postfix_mailstats: MUNIN_PLUGSTATE is an environment
variable. Thanks to pkhamre for reporting this.
* linux/fw_forwarded_local: check for readability with test rather than cat.
* Fixes to Announce-1.4.0
munin (1.4.0, r3033:3115, 2009-11-27)
* Give the docs a once-over and update ChangeLog
* Update plugins.history
* Mention Aleksey Studnev in jmx_ doc
* Merge patch from debian bug http://bugs.debian.org/507069 where
netstat plugin counts \"active connections rejected because of time
stamp\" as active connections, because of a lax regex
* amavis plugin: Minor pod fix
* Add snmp__print_(pages|supplies) printer plugins
* jmx_: nitpicks
* Fix #739: Perl error message only appears when there are no plugins
on any nodes, so check that and LOGCROAK in a helpful way
* munin-update: Change LOGCROAK to WARN for munin includedir missing
or empty
* Munin-node-configure --snmp: modify host enumeration code so
hostnames that are passed in aren't indiscriminately converted to
IPs. only works with plain hostnames, not CIDR.
* Remove Log::Log4perl TRACE level use since that requires a too new
Log::Log4perl
* Munin::Plugin::SNMP: Added support for env.timeout for SNMP sessions
* Add and extend the UPGRADING doc
* Remove reliance on the very newest Getopt::Long version, update docs
accordingly.
* linux/files_: fix slightly odd usage of awk. the warning and
critical thresholds are static, so they can just be echoed along
with the rest of the config.
* Postgres plugins: Correct pod from Munin::Plugins::Pgsql =>
Munin::Plugin::Pgsql (singular plugin, instead of plural)
* Munin::Plugin::Pgsql: Correct Pgsql.pm plugin configuration
documentation section
* Correct the generic crontab install command
* Typo fixes in docs
* Munin-node: Provide a different statefile for each master. Helps
prevent plugins that rely on their state-file from reporting
incorrect data when used on a plugin that is polled by multiple
masters. It uses the master's IP address, so it won't work if they
are both behind the same NAT gateway, for example.
set_state_name() in Munin::Plugin is also modified to behave in a
similar manner.
Additionally exports $MUNIN_STATEFILE into each plugin' environment,
so that all plugins can partake thereof. Should be useful to
plugins written in languages other than Perl.
* Update 1.4 documentation
* Munin::Plugin: fix $Munin::Plugin::DEBUG. it wasn't being set
(lexical variable $DEBUG was being set in its place). change from
"use vars" to "our" for all the externally-accessible variables, to
make it clearer what is going on. + fix indentation
* munin-limits: Check if $children is undef before using it as a array
reference. Fixes #762
* snmp__if_multi: Call "need_multigraph" function to avoid working
under the wrong circumstances
* dhcpd3 plugin: Critical and warning limits added. Some cleanup and
minor fixes.
* Munin::Plugin: straight port of the multigraph assertion sub from Plugin.sh.
* netbsd/sensors_: according to
<http://munin-monitoring.org/wiki/protocol-config>, graph_vtitle
has been superseded by graph_vlabel.
* a few more tests for Munin::Common::Config.
* linux/fw_(packets|conntrack): check for readability not existence
bail properly if /proc/net/snmp cannot be opened.
* Fix #758: Enhance and fix error propagation, fix exception handling,
fix sub-process waiting/reaping, and finaly print old config data
for failed nodes in a working way (probably worked before, but I
broke it when I retooled how old_service_configs is read)
* Munin::Master::ProcessManager: Correct the join command, which
resulted in not printing the firewalled host - now it does :)
* Returning iostst* to family auto, and moving diskstat_ to manual,
until we have multigraph support added to diskstat leaving diskstat
in auto without multigraph creates 3 graphs per disk, and on multi
disk machines this makes the main html quite heavy
* Uncomment includedir /etc/munin/munin-conf.d in munin.conf.in, and
make sure Makefile creates the directory at install time
* add some tests for Munin::Common::Config.
* Munin::Common::Config: populate the valid keyword hash directly,
rather than through an intermediate array.
* linux/diskstat_: Remove fake_munin_plugin, as we know we include
Munin::Plugin , no need to fake it :)
* munin-node.conf: only specify setsid once in the config file
* squid_traffic: hit_kbytes_out needs to be converted to bits, as with
the other data series. fixes Munin ticket #761 and Debian bug
557385 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557385>.
thanks to Samuel Leon <[email protected]> for the patch.
* Prepare announcement of 1.4.0
munin (1.4.0-beta, r2982:3032, 2009-11-21)
* ejabberd_: Fix some documentation and other problems, move to
generic plugin directory (not Linux specific software)
* No .t files in the TAGS file!
* munin-update: Make rrd files even if the DS label evaluates to false
in perl (e.g., foo.label 0)
* bind9: Parse query logs with view information. Closes #661
* linux/ip_: Avoid matching x.x.x.2 with x.x.x.24. Fix is "obviously"
correct and has only been syntax checked
* linux/ip_: Document that we won't support rule matching on the "any"
firewall framework
* linux/cps_ (LVS) plugin fixed by incurporating patch in #636. Not
tested beyond a syntax/autoconf test
* bind9_rndc: Parse BIND 9.6 stats output.
* exim_mailqueue: Add documentation about user required to run plugin and
modidy AWK script as the default action is to print the whole line, which
was done...
* Various fixees to various plugins
* sunos/iostat: New plugin showhing I/O thruput on Solaris
* exim_mailstats: count the number of received, rejected and completed
emails using regexes rather than substr(). fix for ticket #698.
also suppress stderr when fetching the log_file_path, remove some
unnecessary code, improve error when the logfile is unreadable, and
tidy up here and there.
* dev_scripts/install: add install-plugins-prime to the targets run
during a standard install. makes working on plugins rather easier,
since a full, slow, salted-earth reinstall isn't required.
* postfix_mailstats: remove processing of rotated logfiles, as decided
in ticket #631. also includes a bit of tidying, and descriptive
error messages when bailing rather than relying exclusively on exit
status. i don't have a postfix server to hand, so this is not
exactly well tested...
* Plugin execution: remove undefined elements from the plugin command
passed to exec. this fixes the underlying problem the yum plugin
was encountering earlier.
* linux/yum: change yum plugin so it ignores defined-but-empty
arguments. makes fetch work again.
* munin-graph: Re-introduce line continuation in the rrdtool graph
command debug output
* Make munin_graph immune to redundance in graph_order field
* M::M::Config: Enhance a error message to include input line number
* linux/fw_conntrack: Let there be a total.value even if the input is empty
* linux/diskstat_: Document problem with multiple masters
* overview template: Remove COMPARE links as we will not be able to make them
correct in any reasonable timeframe. The datastructure we have now does
not support that O:-)
* munin.conf.pod: Removed the list of example required parameters
configurations from munin.conf man page, as they are not required
anymore, instead moved them to the explanation section for each
parameter, showing the default
* linux/iostat: Changed to manual, as they are replaced by the new
diskstat_ plugin by Michael Renner
* linux/threads: make a little less racy (and a tiny bit more
efficient to boot). it's still not perfect, because even now
there's a gap between the shell expanding the glob and grep getting
round to reading the files, but at least it complains less.
* log anything that plugins print to stderr. also sends a brief
message back to the server explaining what went wrong. fix for
ticket #582.
* munin-graph: Stop trying to copy cdef when aliasing fields in
graph_order -- 1.2 doesn't do that.
* Changing munin.conf.pod, munin-cron.pod to munin.conf.pod.in
munin-cron.pod.in. Adjusting Makefile accordingly. Closes #753
* munin-node: Do "next" on weird filenames not "return" so that we
read all plugin config files
* favicon for all templates. Refactored the finding of the root path
and css name in the process. Added tests for get_root_path
* modify how nested timeouts are handled, as discussed with janl.
this fixes the bug whereby a connection to munin-node would be
unexpectedly terminated if a plugin took more than 10 seconds to
run, regardless of whether this was allowed by the plugin
configuration.
* Catch problems if someone forgot a "address <IP>" or "update no" -
and make it plain in the error message.
* Use_node_name should default to "no". Closes #757
* Clearify munin_set_var_loc error message so we know what value is
set illegaly
* munin-node: Improve error reporting during startup by sort of
merging it with _run_service(). move the eval to the very top of
the event loop so as to avoid interfering with the session timeout.
* linux/fw_conntrack: Now works in 2.6, closes #532, thanks :-)
* Added ejabberd contrib plugin, moved from debian patches
munin (1.4.0-alpha2, r2899:2981, 2009-11-13)
* set obsoleted tomcat_* plugins to family=manual
* smart_ - fix autoconf yes and suggest empty
* openvpn and misc ntp_* plugins: fix some nonzero autoconfs
* mysql_: fix autoconf for missing Cache::Cache
* zimbra_: fix autoconf when missing perl modules
* Fix brokem munin-cgi-graph, which was : missing : --list-images param
for munin-graph, a missing chomp($file), and a wrong path to the
generated png. Also fix HTMLOld passing an array ref instead of an array
* a bit more debug output for the node server -- note which node each
plugin is associated with, and whether it requires multigraph.
* report when plugins are being ignored due to errors when they were
being configured. not very detailed, but better than nothing. also
delete them from the list of plugins, so they're not included in the list.
* Munin-node: fix logic in _suggested_links():
+ never return any suggested links when the plugin shouldn't be installed.
+ correctly handle SNMP plugins whose only wildcard parameter is the host.
(thanks to janl for spotting this was broken.)
* Add proof of concept snort plugins
* snmp__if_multi: Update to acutuall implementation of multigraph and some
further testing and corrections
* INSTALL: Update w.r.t. support for SNMP v3
* munin.conf: Correct "includedir" example
* postfix_mailqueue: Fix autoconf for the negative case, pretty sure it
still works for the positive case O:-)
* Fix various autoconf problems with slapd and ifx plugins
* mysql_* plugins: Now obsoleted by new mysql_ plugin. Set family=manual
* Asterisk_* plugins: None of these support autoconf so remove magicmarker
* HTML: Border on graphs in critical and warning state for nodeview.
Comparison views (hopefully) to follow
* M::M::Utils: End the pod section with =cut, so that the last line,
# vim: syntax=perl ts=8 wont slip into the man page
* M::M::ProcessManager: documentation typo fix
* bind9_rndc: reinstate @@PERL@@ substitution marker, which broke in r2958
* Get the BIND logfile's size before rndc is run, rather than taking a
guess at where it might have been. Fix for #746, thanks to guillomovitch
for the patch.
* Clean up a typo, add use strict, use warnings to all 3 apache_* plugins,
add an info explanation for apache_accesses
* HTML: munin-serviceview: add column header on 6th column in legend table
* M::M::HTMLOld: removes underscore from top navigation element describing
the plugin name for the service page emission. you know for the visual
touch
* HTML: added variable to set the text for the dropdown for each of the
template emitting functions.
* Refactoring templates into partials (with include) to avod a lot of
duplication. There is some left. Better look on the legend table for
service-biew and dropdown with 'other' links with config
value. Default is 1 at the moment. Makefile adds install steps for
new partial folder
* M::M::UpdateWorker: Typo--;
* linux/df_inode: vfat doesn't have any inodes either.
* More documentation of plugins
* Graphs: Fix cur: values for .stack and .sum.
* Graphs: ADDNAN in expand_specials cdefs
* Remove .label requirement on .stack fields.
* Changed munin_stats to check for
$Munin::Common::Defaults::MUNIN_LIBDIR/munin-update existance +
executable in order to autoconf it as previously it checked for the
existance of the munin master logs, which did not exist in a clean
installation. Also added a check + extinfo message in case any of the
log files are not readable
* Fix copying of subhashes (#%#parent was broken in old version). Fixed
various issues in a couple of programs.
* M::M::ProcessManager: clarify what the numbers at the end of the log
message mean.
* M::P::SNMP: for some reason, Net::SNMP doesn't consider 'No Such
Object' to be a real error. Handle better in get_single.
* linux/ip_: Use env.hostname to replace ip-number in graph_title.
* pm3users_ : we can do colour now
* ipmi_sensor_ - fix autoconf for missing ipmitool
* M::M::Config: Handle continued lines (ending in \)
* M::M::GraphOld: Comment out utime call that interferes with rrd's
--lazy option
* M::M::Node: A missing .label isn't as fatal as all that. Insert a
value and supply .extinfo to explain more
* Make the linux/diskstat_ plugin work better w/o root access,
document a bit better
* Remove obsolete nagios specific munin-limits commands from crontabs all over.
* M::M::Update: Load datafile relative to the configured dbdir, not
the default dbdir
* squeezebox_: Various enhancements
* M::M::Node: More specific location of the missing label from the config output
* M::M::LimitsOld: Forgot to actually make this into a exporter
module. Thanks to Kevin Fenzi for pointing this out
* mysql_ plugin: Update vlabels for concistency
* Give the BIND plugins a graph_category as pointed out in email by Rado Rovny
* Update mysql_ plugin from upstream
* Get rid of munindoc.in from the installation (closes #742)
* INSTALL: More modules, and a section on using CPAN-shell
* Implement dropdown boxes for peers when there are more than
"dropdownlimit" number of peers. Implemented for all views except
overview, which is a special kind of, ehm, view. Also removes
underscores from names for graph peers to clean them up a bit
munin (1.4.0-alpha, r1560:2898, 2009-11-06)
* squeezebox_: Changes to support several players
* smart_: Exit 0 on autoconf as the doctor ordered
* Make munin-graph recognize --help
* Quite a bit of work on error messages and log messages
* munin_stats plugin: Accept logdir setting from plugin-conf.d
* processes and linux/proc_pri plugins: Add vlabel
* Handle domain_order as group_order.
* Sort peers properly (fixes #577)
* Fix handling of group_order and node_order (partial fix for #579)
* Munin-update: soften up the protocol error handling a bit
* Make munin-html tolerate --nofork - even if it has no effect. Document.
* mysql_ plugin: Fix "suggest" bug
* Add multigraph_tester plugin to test (and show off) multigraph features
* Add extinfo_tester plugin for developer aid
* Make use_node_name work again (fixes #739)
* One single instance of "includedir" in munin.conf is now obeyed to
implement a "drop directory" for munin-master configuration.
Example in munin.conf
* Add python-plugin OO framework as python-plugin
* Make M::M::Logger a bit more subtle about warnings when the logs are not
open (so that they appear somewhere instead of nowhere)
* Update plugin configuration for varnish_
* Make notifications work again
* munin.conf: Set HTML and CGI dir consistently
* Added new mysql_ by Kjell-Magne Øierud plugin, document origin, and
sentence the others to exile (family=contrib)
* Fix "make/make install" problems, document the other
* Change <img> framing a bit to allow coloured frames (once the templates are updated)
* Add multigraph support to all programs in the munin-suite