-
Notifications
You must be signed in to change notification settings - Fork 35
/
Changelog
960 lines (920 loc) · 41.9 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
This file documents the revision history for the Open Monitoring Distribution (Labs Edition)
next:
- omd:
- add -y/--yes option to accept some dialogs automatically
- add build support for ubuntu 24.04
- fix dropping root privileges on omd disable command
- omd cleanup: add --dry-run / -n option
- omd cleanup: add --keep / -k option
- omd start -N/--no-verify to set CORE_NOVERIFY=yes
- add build support for ubuntu 24.04
- thruk:
- update to 3.20
- lmd update to 2.2.4
- plugins:
- check_dell_health update to 1.1.0.2
- check_hpasm update to 4.10
- check_nwc_health update to 12.0.3.2
- check_pdu_health update to 3.0.2.1
- check_printer_health update to 1.2.0.1
- check_rittal_health update to 4.1
- check_ups_health update to 4.3.2
- check_vsphere update to 0.3.11
- check_wut_health update to 4.1.2.2
- gearman:
- mod-gearman update to 5.1.6
- mod-gearman-worker-go update to 1.5.2
- grafana:
- update to 11.1.5
- pnp-datasource update to 2.1.0
- thruk-datasource update to 2.1.1
- apache:
- add UnsafeAllow3F if required
- snmptrapd:
- improve the trap_logger
- coshsh update to 10.2.3
- histou update to 0.5.3
- icinga2 update to 2.13.10
- monitoring-plugins update to 2.4.0
- nagflux update to 0.5.2
- node update to 20.6.1
- omdnotificationforwarder update to 2.6.1.3
5.40 Jul 12 2024
- omd:
- remove /etc/init.d/omd, all systems use systemd now
- thruk:
- update to 3.16
- lmd update to 2.2.1
- naemon:
- update to 1.4.2
- livestatus update to 1.4.2
- plugins:
- check_dell_health update to 1.1.0.1
- check_hpasm update to 4.9.0.1
- check_mssql_health update to 2.7.7
- check_nsc_web update to 0.7.2
- check_ntp_health update to 1.5.0.1
- check_nwc_health update to 11.4.0.2
- check_printer_health update to 1.2
- check_rittal_health update to 4.0
- check_ups_health update to 4.2.1
- check_vsphere update to 0.3.10
- check_wut_health update to 3.2.1
- gearman:
- mod-gearman-worker-go update to 1.5.1
- grafana:
- update to 10.4.2
- thruk-datasource update to 2.0.8
- prometheus:
- update to 2.53.1
- coshsh update to 10.2.1.3
- omdeventhandler update to 1.1.0.1
- omdnotificationforwarder update to 2.6.1.1
- pnp4nagios update to f4a831e
- promxy update to 0.0.86
- victoriametrics update to 1.101.0
5.30 Jan 29 2024
- OMD:
- create new sites with permissions 0750 and group omd
- Thruk: update to 3.12
- LMD: Update 2.1.9
- Monitoring-Plugins: update to 2.3.5
- Gearman:
- Mod-Gearman module update 5.1.3
- update mod-gearman-worker-go to 1.3.8
- VictoriaMetrics 1.93.1 (LTS)
- Prometheus
- Prometheus 2.45.2
- alertmanager 0.26.0
- pushgateway 1.6.0
- node_exporter 1.7.0
- Grafana:
- update to 10.2.3
- loki update to 2.9.3
- update thruk datasource to 2.0.4
- enable wal for internal sqlite db
- Histou update to 0.5.1
- Go builds updated to 1.21.6
5.20 Jul 22 2023
- OMD:
- add build support for Debian 12
- Thruk: update to 3.08.3
- LMD: Update 2.1.6
- Gearman:
- update mod-gearman-worker-go to 1.3.7
- Mod-Gearman module update 5.1.2
- Grafana:
- update to 9.5.6
- update pnp datasource to 2.0.2
- update thruk datasource to 2.0.3
- Plugins:
- update check_testssl to 3.0.8
- update check_vsphere to 0.3.0
- Go builds updated to 1.20.5
- VictoriaMetrics
- update to 1.87.6
- migrate config to conf.d folder
- Prometheus
- node_exporter 1.6.1
5.10 Feb 20 2023
- OMD:
- omd order of options can now be set before or after the command, ex.: omd status -b
- omd backup: add --exclude and -v option
- omd mv/cp: add --exclude option
- omd update: add --dry-run/-n option
- since old versions do some checks before switching to the new version, you
need to start the dry-run update directly like for ex.:
'/omd/versions/5.10-labs-edition/bin/omd update -n'
(only required when updating from releases < 5.10)
- omd update: add support for updates while site is running (using force option -f)
- omd create: add support for pre-create/post-create scripts
- omd rm: add support for pre-rm/post-rm scripts
- omd status: performance improvements
- Thruk: update to 3.04
- LMD: Update 2.1.4
- Naemon:
- update core to 1.4.1
- update livestatus to 1.4.1
- Grafana:
- update to 9.3.6
- update pnp datasource
- Loki update to 2.7.2
- Gearman:
- Gearmand update 1.1.20
- Mod-Gearman module update 5.0.2
- update mod-gearman-worker-go to 1.3.1
- do not install c-worker anymore
- Mysql:
- change tmpdir to ~/var/tmp
- Prometheus
- Prometheus 2.37.5
- promlens 0.3.0
- update mod_prometheus_status apache module 0.3.0
- InfluxDB
- add influxdb_show_cardinality script
- add influxdb_vim_series script
- Ansible 2.9.27
- Monitoring-Plugins: update to 2.3.3
5.00 Nov 14 2022
- DEPRECATION WARNING: the following components got removed
- python 2 modules
- OMD:
- add build support for rhel9
- add build support for ubuntu 22.04
- add build support for opensuse 15.4
- Thruk: update to 3.00
- Naemon:
- update core to 1.4.0
- update livestatus to 1.4.0
- update vimvault to 1.4.0
- disable writing status.dat
- rrdtool: Update to 1.8.0
- Icinga2 update to 2.13.4
- Prometheus
- node_exporter 1.4.0
- pushgateway 1.4.3
- alertmanager 0.24.0
- blackbox_exporter 0.22.0
- Grafana:
- update to 9.2.4
- update pnp datasource
- update thruk datasource
- Loki update to 2.7.0
- Dokuwiki
- Updated to Version 2022-07-31
- VictoriaMetrics 1.79.5
- Gearman:
- Mod-Gearman module update 4.0.4
- update mod-gearman-worker-go to 1.2.3
- LMD: Update 2.1.2
- Monitoring-Plugins: update to 2.3.2
4.60 Aug 12 2022
- Naemon:
- update core to 1.3.1
- update livestatus to 1.3.1
- Grafana 7.5.13
- Icinga2 update to 2.13.2
- InfluxDB 1.8.10
- Prometheus:
- Prometheus 2.32.1
- node_exporter 1.3.0
- alertmanager 0.23.0
- VictoriaMetrics 1.72.0
- Thruk: update to 2.48.3
- LMD: Update 2.1.0
- Gearman:
- Mod-Gearman module update 4.0.2
- update mod-gearman-worker-go to 1.2.1
- Go builds updated to 1.18.3
- check_nrpe 4.1.0
4.40 Nov 08 2021
- Naemon:
- update core to 1.3.0
- update livestatus to 1.3.0
- add vimvault plugin
- Thruk: update to 2.46
- LMD: Update 2.0.3
- VictoriaMetrics 1.66.2
- Grafana 7.5.9
- InfluxDB 1.8.5
- Prometheus:
- Prometheus 2.30.3
- node_exporter 1.2.2
- blackbox_exporter 0.19.0
- pushgateway 1.4.1
- alertmanager 0.22.2
- Gearman:
- Gearman-Proxy update 2.08
4.20 Jun 10 2021
- Naemon:
- update core to 1.2.4
- update livestatus to 1.2.4.1
- Thruk: update to 2.44.3
- LMD: Update 2.0.1
- Gearman:
- update mod-gearman-worker-go to 1.1.5
- Icinga2 update to 2.11.8
- Monitoring-Plugins: update to 2.3.1
- Grafana
- Grafana update to 7.5.7
- Prometheus:
- Prometheus update to 2.27.1
- node_exporter update to 1.1.1
- snmp_exporter update to 0.20.0
- VictoriaMetrics 1.61.0
- Ansible 2.9.7
- Go builds updated to 1.16
4.00 Dec 14 2020
- OMD:
- add build support for sles12sp4
- add build support for ubuntu20.04
- add build support for fedora31
- add build support for fedora32
- add omd check command to run configuration check
- Gearman:
- Mod-Gearman update 3.3.3
- update mod-gearman-worker-go to 1.1.4
- Gearmand: update 1.1.19.1
- Gearman-Proxy update 2.07
- InfluxDB: update to 1.8.0
- Monitoring-Plugins: update to 2.3
- Nagflux: update 0.5.0
- Thruk: update to 2.40-2
- Naemon:
- update core to 1.2.2
- update livestatus to 1.2.2
- Grafana
- Grafana update to 7.3.5
- Grafana-Loki update to 1.6.1
- LMD: Update 1.9.2
- Go updated to 1.15
- Prometheus update to 2.22.2
- VictoriaMetrics 1.47.0
3.30 May 20 2020
- OMD:
- add build support for Debian 11
- Grafana update to 6.7.3
- add grafana-loki 1.4.1
- InfluxDB: update to 1.7.10
- Prometheus:
- Prometheus update to 2.18.1
- Alertmanager update to 0.20.0
- add mod_prometheus_status apache module
- Thruk: update to 2.34-2
- LMD: Update 1.8.1
- Gearman:
- Mod-Gearman update 3.3.0
- Gearmand: update 1.1.19
- Gearman-Proxy update 2.06
- Naemon:
- update core to 1.2.0
- update livestatus to 1.2.0
- LMD: Update 1.8.2
- Go updated to 1.14
- Icinga2 update to 2.11.3
- check_nrpe 4.0.2
3.20 Oct 30 2019
- OMD:
- omd cleanup will keep current default version installed
- add build support for Centos 8
- add build support for Fedora 30
- add build support for Ubuntu 19.04 Disco Dingo
- add build support for Ubuntu 19.10 Eoan Ermine
- add dokuwiki auth plugin for thruk
- Thruk: update to 2.32-2
- Naemon:
- update core to 1.1.0
- update livestatus to 1.1.0
- Grafana update to 6.4.3
- Prometheus:
- Prometheus update to 2.13.1
- Alertmanager update to 0.18.0
- node_exporter update to 0.18.1
- blackbox_exporter update to 0.15.0
- Gearman:
- Mod-Gearman update 3.2.1
- update mod-gearman-worker-go to 1.1.3
- Gearmand: update 1.1.18
- LMD: Update 1.7.1
- Go updated to 1.13.3
3.10 May 16 2019
- Thruk: update to 2.30-2
- Grafana update to 6.1.6
- Prometheus update to 2.9.2:
- Alertmanager update to 0.17.0
- Pushgateway update to 0.8.0
- blackbox_exporter update to 0.14.0
- Add Thanos download script for version 0.4.0
- InfluxDB: update to 1.7.6
- Go updated to 1.12.5
- Mod-Gearman update 3.0.9
- python modules: added decorator and jsonpath-ng
- Ansible 2.7.10
- check_nsc_web: update to 0.5.3
3.00 Apr 01 2019
- DEPRECATION WARNING: the following components got removed, read more on https://labs.consol.de/omd/migration_3.html
- Nagios 3
- Icinga 1
- CheckMK
- Nagvis
- OMD:
- removed icinga1
- removed nagvis
- removed check_mk
- removed dataScryer
- removed nagios3
- Naemon:
- update core to 1.0.10
- update livestatus to 1.0.10
- Thruk: update to 2.28
- Mod-Gearman:
- update mod-gearman-worker-go to 1.1.1
- update 3.0.8
- LMD: Update 1.5.0
- check_nsc_web: update to 0.5.2
- Ansible 2.7.9
- Prometheus: update to 2.8.1
- Alertmanager update to 0.16.1
- Thanos update to 0.3.1
- Grafana update to 6.0.2
- InfluxDB: update to 1.7.3
- Go updated to 1.11.6
- Add Go 1.12.1
2.90 Dec 19 2018
- OMD:
- create random omdadmin password on omd create
- display warning if using the old default password
- add build support for Ubuntu 18.10 Cosmic
- add build support for Fedora 29
- Thruk:
- update to 2.26-2
- migrate cgi.cfg to etc/thruk
- Grafana update to 5.4.2
- Prometheus update to 2.6.0
- Prometheus Alertmanager update to 0.15.3
- Prometheus node_exporter update to 0.17.0
- Prometheus Pushgateway update to 0.7.0
- Prometheus blackbox_exporter update to 0.13.0
- Go updated to 1.11.4
- Mod-Gearman:
- update 3.0.7
- switch to go worker
- update mod-gearman-worker-go to 1.0.7
- reduce log entries when gearmand hits open file limit
- LMD: Update 1.3.7
- Naemon:
- update core to 1.0.9
- update livestatus to 1.0.9
- add simple query handler client: nq
- Icinga:
- remove cgis
- InfluxDB: update to 1.7.2
2.80 Oct 29 2018
- OMD:
- add SELinux support for centos/rhel and fedora
- add build support for Ubuntu 18.04 Bionic
- add build support for Fedora 28
- add WEB_ALIAS hook to define an url alias
- add WEB_REDIRECT hook to enable redirect from / to /sitename
- support uninstalling versions, even if sites use this version
- site can be updated later by running omd update of the new version
- add --no-tmpfs option to "omd create"
- add "omd cleanup" command to remove unused omd versions
- Naemon update to 1.0.8
- InfluxDB: update to 1.6.4
- add INFLUXDB_MODE hook to support ssl
- Go update to 1.9.7
- Go update to 1.10.4
- Grafana update to 5.3.2
- set default fill to none for influxdb datasource
- new datasource for PNP
- new datasource for Thruks REST API
- Prometheus update to 2.4.3
- Prometheus Pushgateway update to 0.5.2
- Prometheus node_exporter update to 0.16.0
- Prometheus Alertmanager update to 0.15.2
- Icinga2 update to 2.9.2
- add ido features (experimental)
- add ido omd config hook (experimental)
- Thruk:
- update to 2.24
- disable shinken features plugin in default installation
- LMD: Update 1.3.5
- Mod-Gearman: Update 3.0.6
- add mod-gearman-worker-go
- Monitoring-Plugins
- add check_curl
2.70 Mar 14 2018
- OMD:
- add LIVESTATUS_TCP_ONLY_FROM hook
- add omd -p switch for parallel restart/reload/stop/start
- add build support for Ubuntu 17.10 Artful
- add build support for Fedora 27
- Thruk: update to 2.20-2
- NagVis update to 1.9.5
- Prometheus update to 2.1.0
- Prometheus blackbox_exporter update to 0.12.0
- Prometheus node_exporter update to 0.15.2
- Prometheus Alertmanager update to 0.13.0
- Icinga2 update to 2.8.1
- add omd_root and omd_site to constants.conf
- InfluxDB: update to 1.4.2
- Ansible: update to 2.3.3.0-1
- Check_prometheus: added 0.0.1
- Go: added 1.9.4
- Go: added 1.10
- Grafana update to 4.6.3
- Histou update to 0.4.3
- added check_vmware_esx plugin
- LMD: Update 1.3.0
2.60 Aug 20 2017
- Thruk: update to 2.16-2
- Go update to 1.8.1
- Icinga2 update to 2.7.0
- Prometheus update to 1.7.1
- Prometheus Alertmanager update to 0.8.0
- Prometheus blackbox_exporter update to 0.8.1
- Prometheus node_exporter update to 0.14.0
- Prometheus Pushgateway update to 0.4.0
- Prometheus snmp_exporter update to 0.4.0
- InfluxDb update to 1.3.3
- Grafana update to 4.4.1
- Mod-Gearman: Update 3.0.5
- LMD: Update 1.1.2
- Added build support for Debian 10, Ubuntu 17.04, Fedora 26
- omd:
- add vimdiff option to resolve merge conflicts
- add vimdiff command to quickly compare config files
- add reset command to restore a skeleton file from default
- support hot backups without stopping the site
2.40 May 13 2017
- Thruk: update to 2.14-2
- add THRUK_LOGCACHE hook to simply enable the logcache
- Naemon update to 1.0.6
- Nagios: Update to 3.5.1
- histou: update 0.4.1
- nagflux: update 0.4.0
- coshsh: update 3.2.4.3
- Monitoring-Plugins: update to 2.2
- Icinga2 update to 2.6.3
- Icinga1 update to 1.14.0
- Grafana update to 4.2
- Go 1.8 added
- InfluxDb update to 1.2.0
- Mod-Gearman: Update 3.0.2
- apply fixes for CVE-2016-9566 in nagios3, icinga1 and naemon
- apply fixes for CVE-2013-7205 in nagios3
- add process_performance_data=1 to default config files
- add grafana datasource for pnp rrd files
- Apache:
- add mod_rpaf to set remote_addr to real address
- omd:
- add systemd service file, fixes reboot problem on centos
- removed old unmaintained packages:
- shinken
- mongodb
- support cross platform/cross version backup/restores
- set log_initial_states=0 per default
- NRPE: Update to 3.0.1
- LMD: Update 1.1.1
2.20 Nov 18 2016
- OMD
- use distro version numbers in package names for debian and ubuntu too
- add html mail notification templates
- add bash completion
- Debian:
- switch to virtual-mysql-server dependency in order to use mariadb as well
- Added build support for Fedora 24
- Monitoring-Plugins update to 2.1.2
- Icinga update to 2.4.10
- Influxdb update to 1.1.0
- see https://docs.influxdata.com/influxdb/v1.0/administration/upgrading/
- add default retention policy of 2years and add omd config option to set policy.
- Grafana update to 3.1.1
- add grafanactl for command line user management
- Core
- set log_external_commands=1 by default
- added ansible 1.9.5
- Histou / Nagflux update - new Layout
- see https://github.com/Griesbacher/nagflux/releases/tag/v0.2.0
- Added Prometheus, Alertmanager, BlackboxExporter and PushGateway
- added Livestatus Multitool Daemon (LMD) 1.0.2
- Thruk: Update to 2.12
- Mod-Gearman: Update 3.0.0
- Naemon update to 1.0.5
2.10 Nov 12 2015
- Icinga update to 2.3.11
- Naemon update to 1.0.3
- Mod-Gearman2: Update 2.1.5
- Apache shared mode removed
- added Grafana
- added Influxdb
- added Histou
- added Nagflux
- Thruk: Update to 2.04
2.00 Feb 20 2015
- new core Naemon 1.0.0 added
- new core Icinga 2.2.4 added
1.40 (not yet released)
- omd:
- FIX: Fixed streamed "omd restore" resulting in an exception
- FIX: Improved "omd restore" error handling in case of trying
to restore invalid backup files
- FIX: Added missing but documented --conflict flag to "omd restore"
- FIX: Skipping partially created sites during omd start/stop/restart
- FIX: Set correct shell environment for cronjobs
- FIX: Fixed possible "omd create" issue when APACHE_TCP_ADDR hook
was executed after APACHE_TCP_PORT
- omd backup: Can use --no-rrds,--no-logs or --no-past now to
exclude RRDs and/or the monitoring history from the backup. These
options can be used to make the backup/restore procedure faster
and reduces the size of the backup, but it is not a complete backup.
- Improved error message when trying omd action as non site user
- Printing usage info in case of unknown command
- Apache:
- Removed the shared mode (only one system wide apache process).
This mode was not used widely and it was a pain to maintain it,
so we decided to drop it. If you used the shared mode before,
it will be changed to own mode during update. You might need
to reload/restart your system apache manually once to apply
the change.
- Debian: Harmonized default version handling with RPM based distros.
Previous OMD installations were leaving previously set default version
untouched during installation of a new OMD package on Debian based
distributions. This was handled differently on Debian and RPM based
distributions and lead to confusions when using both platforms.
We decided to unify the behaviour on all distributins and make OMD
automatically set the default version to the new one during
installation of a new package.
- FIX: PHP-Sessions were not cleaned up during run time. The sessions
were only cleared on system boot.
Added a cron job to the sites that runs on a daily base at 0:10
to search the session directory at tmp/php/session to remove all
files which are older than 24 hours
- Nagios:
- FIX: Starting nagios daemon with LC_ALL=C to prevent localization
of performance data output of e.g. check_icmp
- NagVis:
- Update to version 1.9b3
- Icinga: Update to 1.13.3
- Thruk: Update to 2.10
- Phantomjs: Update to 2.1.1
- Added build support for SLES 12 SP1
- Added build support for Fedora 23
- Added build support for Ubuntu 16.04
- nsca: Update to 2.9.1
- Dokuwiki
- Updated to Version 2016-06-26a
1.30 Oct 01 2015
- omd:
- Added "Basic / ADMIN_MAIL" hook to configure the target mail
address for eMails sent to the site user (e.g. created by
crontab). Finally this generates the ~/.forward file within
the sites directory. When a mail address is configured, the
file is written, when you have none configured, the file is
deleted.
If you already have a ~/.forward file, the mail address will
automatically be used as ADMIN_MAIL value.
- Added backup/restore modes to backup and restore sites completely
You can backup your sites and restore them with the same or a
different name.
Example:
omd backup mysite /tmp/backup.tgz
And for restore use:
omd restore restored /tmp/backup.tgz
You need to ensure you have the OMD version installed during
restore, which the site was using during backup.
You can also backup to stdout and restore from stdin which means
you can stream a backup cross the network. This might not only
be useful for backups, but also for migrations across servers.
- FIX: Update mechanism detects obsolete but non empty directories
correctly and asks the user whether or not to delete them
- FIX: SLES omd init-Script does not use default runlevel 4 anymore
- FIX: Added PYTHONPATH to site crontab for being able to access
the sites python modules as when run in interactive mdoe
- NagVis:
- Update to version 1.8.5
- Removed deprecated directory var/nagvis/userfiles. This was
deprecated since version 0.52. During the update to 1.30, the
directory and all its contents will be removed. This should be
no problem for most users, because the directory is not used
anymore since a long time.
If you update from OMD 0.52 or below, you need to manually backup
files from var/nagvis/userfiles and copy them to
local/share/nagvis/htdocs/userfiles after the update to make them
available again.
Note: If you decide to downgrade from this or a following
version to version 0.52 or older, you will again need to care
about these files manually.
- FIX: The nagvis URLs were not correctly linking to e.g. Check_MK
when a site has been created with Check_MK as default GUI
- FIX: Fixed site not starting after "omd cp" when using
the arguments --no-past, --no-rrds or --no-logs
- Check_MK:
- Update to 1.2.6p12
- moved log dir to var/log
- Added build support for SLES 12, 11 SP4
- Added build support for Ubuntu 14.10, 15.04, 15.10
- Added build support for Debian 8
- RedHat / CentOS: Builds are now only dedicated to the major
version, not caring about the minor versions anymore
- Mod-Gearman: Update 1.5.5
- Thruk: Update to 2.02
- fix pnp ssi files
- Gearman: Updated to version 0.33-4
- PNP4Nagios: Update to 0.6.25
- Updated Monitoring-Plugins to 2.1.1
- Icinga: Update to 1.12.0
- updated to nail/mailx 12.5
- rrdtool: Update to 1.5.4
- apache:
- mod_fcgid: update to 2.3.9, sles 11 and centos 5/6 only
- set graceful restart timeout
- Default redirects from /[site] and /[site]/ to /[site]/omd/ are
are now preserving the original requested protocol (http/https).
When using the apache own mode (which is the default), having
the system apache service the pages via HTTPS, you will need to
configure the system apache to provide the X-Forwarded-Proto
request header to the site apache, which can be done by
adding the line 'RequestHeader set X-Forwarded-Proto "https"' to
the proxy configuration related to the site.
- Apache is now using the default site profile (e.g. PATH)
- Dokuwiki
- Updated to Version 2014-09-29d
- fix discarding all local settings on update
- check_webinject: Update to 1.88
1.20 Aug 25 2014
- apache: Changed order of apache daemon startup/stopping
The webserver is now started after the monitoring core, but more
important, it is now stopped after the core. This should reduce
the time needed to bring down all worker processes, since there
are no hanging livestatus connections started by web clients anymore.
- debian packge: Removed non existant URL from changelog
- perl-modules:
- Added missing semikolon to fix syntax error
- Added Monitoring-Plugin module
- omd:
- Added --apache-reload flag to omd create/rm for executing a
reload of the system apache instead of a restart
- Added nagios/icinga reload init hooks
- Added --tmpfs-size/-t option to omd create/mv/cp for specifying
an explicit maximum size for the sites tmpfs
- FIX: Providing correct exit codes when running "omd status"
- FIX: exit with 2 (partially running) when only some of the
sites are running or partially running using "omd status"
- FIX: Reducing duplicate config writes during site creation
- Init scripts return exit 0 when executing start and daemon is
already running (Modified nagios, apache and rrdcached scripts)
- diskspace: Fixed error messages in syslog which were caused by
exit codes of 3 when diskspace cleanup has not been configured
- FIX: Fixed logrotation when var/tmp does not exist
(seem to only be created when xinetd had been enabled before within a site)
- Check_MK/MK Livestatus: new version 1.2.4p5
- Thruk: Update to 1.84-6
- PNP4Nagios: Update to 0.6.24
- Icinga: Update to 1.11.4
- NagVis: Update to 1.8b6
- Dokuwiki: Fixed integration with multisite cookie authentication
- Added build support for Ubuntu 14.04
- Added build support for CentOS 7.0
- New command lc for sending a core command via Livestatus, e.g.
lc ENABLE_NOTIFICATIONS
- Updated Monitoring-Plugins to 2.0
1.10 Dec 15 2013
- omd: More friendly error messages when init scripts do not exist
- omd: Added option to execute scripts during site creation by putting
files to ~/lib/omd/scripts/post-create
- python modules: added pysnmp and pyasn1 modules
- rrdtool: Also deliver python bindings
- rrdcached is now logging to ~/var/log/rrdcached.log
- added missing logrotation config for ~/var/log/xinetd.log
- added "diskspace" program which is meant to cleanup too old files
which are not needed/wanted anymore and are not handled by regular
logrotate (like e.g. the nagios archive). Is callec automatically
every hour when the OMD crontab is enabled. This can be changed by
editing the cron config etc/cron.d/diskspace
- Thruk: Update to 1.80-3
- Mod-Gearman: Update 1.4.14
- Nagios: Init script kills whole process groups during "stop"
- check_webinject: Update to 1.86
- gearmand: increase open files limit
- Fix bug on Debian/Ubuntu where start/stop script started/stopped
sites multiple times
- cleanup checkresults dir of Nagios when (re-)starting Nagios
- Init scripts can now deal with upstart user sessions, where the
PPID is not 1 anymore, instead of it the PPID is the user session
init process (init --user). This was first seen on ubuntu 13.10.
- Added build support on Ubuntu 13.10 (Saucy Salamander)
- Check_MK/MK Livestatus: new version 1.2.2p3
- NagVis: Update to 1.8b4
- Nagios Plugins: Update to 1.5
- Support builds on CentOS/RedHat 5.10
1.00 Jun 17 2013
- Nagios: Update to 3.5.0
- Icinga: Update to 1.9.1
- Thruk: Update to 1.72-2
- added cookie based login
- Apache: Enabling mod_status (if available) for 127.0.0.1 in own mode
- Check_MK/MK Livestatus:
- new version 1.2.2p2
- integrated Event Console
- Changed path for check manpages from share/doc/check_mk/checks
to share/check_mk/checkman to match the local/ path
- Installing livestatus python API module now
- Added config hook MULTISITE_AUTHORISATION to control some user
permissions in NagVis and pnp4nagios via multisite permissions
- NagVis: Update to 1.7.9
- omd:
- new option --no-autostart, -A for omd create (set AUTOSTART
to off right at creation, useful for test sites!)
- update: Ensure execution of the target versions hooks
- update: Added update log ~/var/log/update.log
- FIX: Fixed handling of comments in distro files (repairs "omd
setup" on some platforms)
- PNP4Nagios: Updated to version 0.6.21
- Added INIT hooks to npcd and pnp_gearman_worker scripts
- Support Ubuntu 12.10 (Quantal)
- Support Ubuntu 13.04 (Raising)
- Webinject: Update to 1.76
- NRPE: Update to 2.13
- check_multi: updated to 0.26_581
- Mod-Gearman: Updated to version 1.4.6
- Gearman: Updated to version 0.33
- added queue retention
- mod_python: Fixed our sys.path patch not to destory the default
sys.path set during interpreter initialization
- Dokuwiki: Now supporting the new multisite cookie format
- rrdtool: Update to version 1.4.8
- compile and install Python binding
- nagios: Changed init script to kill still running processes during
"stop" call after 60 seconds waiting
- Added python module pysphere to make ESX monitoring easier
- Jmx4Perl: Update to 1.07 (Jolokia: 1.1.1)
- nsca: Cleaned up init script, better detection of stale pids / processes
0.56 Sep 25 2012
- omd:
- Fixed problem updating omd sites without tmpfs: Not removing
whole tmp/ directory but only the contents
- Improved exception handling during omd update/cp/mv (Asking
for retry/accept/abort now)
- RPMS: Not checking for removed version during pkg release update
(Does not mean omd version update.)
- check_multi: updated to 0.26_538
- Mod-Gearman: Updated to version 1.3.8
- Thruk: Update to 1.50
- Nagios Plugins: Update to 1.4.16
- PNP4Nagios: Update to 0.6.19
- NagVis: Update to 1.7.1
- Icinga: Update to 1.7.2
- Check_MK: Added 1.2.0p2 release
- Shinken: Update to 1.2
- jmx4perl: Update 1.05
- Support Ubuntu 12.04 (Precise)
- set log_initial_states=1 per default
0.54 Apr 02 2012
- omd:
- FIX: Fixed "omd umount" command when running without specific site
- new option --kill for umount, rm and disable, that will kill
processes using tmpfs before unmounting it
- output argument help when calling omd COMMAND --help
- new option --conflict=HOW for non-interactive omd cp/mv/update.
- mod_python:
- Fix "omd stop apache", which was sometimes timing out
- Fix several DeprecationWarning messages when using python 2.6
- NagVis: Updated to NagVis 1.6.5
- Thruk: Update to 1.26
- RRDtool: Update to 1.4.7
- PNP4Nagios: Update to 0.6.17
- Webinject: Update to 1.72
- Mod-Gearman: Updated to version 1.2.6
- Gearman: Updated to version 0.25
- Debian 6.0: Added missing dependency for mod_python (libpython2.6)
- RPMs: Added "chkconfig --add <s>" commands before "chkconfig <s> on" commands
- Making etc/htpasswd file writeable by the site group
- Apache logrotate: Performing reload instead of restart
- Shinken:
- update to 1.0.1
- add MongoDB as backend for livestatus logs
- Switch Check_MK to version 1.1.12p7
- Support SLES11 SP2
- Dokuwiki
- Updated to Version 2012-01-25 Angua
- Template Vector now available
0.52 Dec 22 2011
- Switch Check_MK to version 1.1.12p6 (Please refer to the migration notes
of Check_MK on http://mathias-kettner.de/checkmk_migration_notes.html!)
- FIX: WATO - Fixed permissions on conf.d directory for shared apache mode
- FIX: Fixed permissions for PHP temp files in shared mode
- Get rid of dummy host in a plain fresh OMD site
- NagVis
- Updated to NagVis 1.6.1
Note #1: The userfiles directory has been moved from var/nagvis/userfiles
to local/share/nagvis/htdocs/userfiles. The side individual files
shal be copied during update. The old files are left untouched in the
old directory. If everything works as expeced after update and you
don't plan to downgrade again you can savely remove the directory
var/nagvis/userfiles from your site
Note #2: During "omd update" omd might tell you that the file etc/nagvis/auth.db
is obsolete and you changed its contents. In normal cases you want to keep the
file (press k) to keep your user accounts, role assignments and permissions.
- local/ hierarchie can now handle .php files
- Moved nagvis-omd.ini.php to new conf.d/ directory
- OMD
- Added 'umount' option to unmount the ramdisk of a site
- Added 'TMPFS' config option to be able to run omd without the tmpfs filesystem
- Handling comments and empty lines in .info files correcty
- Made 'setversion' work on broken links
- New commands 'disable' and 'enable'. OMD does not depend on the
home directories of disabled sites. This is useful in cluster environments.
- New option 'omd create --disabled' and 'omd init' which allows the creation
of a site with an empty home directory and afterwards population it. Again
this supports cluster environments.
- start, restart and reload now honor the option -f,--force: All
sites will then be affected, regardless of AUTOSTART
- FIX: omd update: page diff through less -F -X (-X is new). This fixes
a problem where the diff is not visible on dumb terminals like PuTTY.
- FIX: omd: site processes where missing supplementary groups when starting
the site as root via 'omd start SITE'
- FIX: omd update handled most files twice (without need). This is
fixed now.
- FIX: omd diff now correctly handles relative paths.
- FIX: omd diff now correctly instantiates templates before showing
diff in verboes mode
- FIX: omd umount skips unmounting on partly running sites
- updated to jmx4perl 1.04
- pnp4nagios
- npcd: Now detecting and handling stale pidfiles in init script
- updated to Mod-Gearman 1.1.1
- updated to Thruk 1.1.7
- updated to pnp4nagios 0.6.16
- updated to Icinga 1.6.1
- Support Ubuntu 11.10 (Oneiric)
- Cleanup up startscript of nagios
- New handler for Apache error messages (shows end of logfile)
- Ship own version of mailx alias nail as bin/mail
- Allow line continuation in nagios config with BACKSLASH LF
- Nagios: Skip emacs backup files while loading files from nagios.d directory
- Increased php memory limit on CentOS platforms to 64 MB
- dokuwiki auth: do not destroy htpasswd symlinks showing to another file
0.50 Sep 20 2011
- Check_MK: fix problem with playing sounds
- Nagios:
- added patch to remove host alias from state retention.
Changes of the alias in your configuration will now be
effective.
- updated to check_oracle_health 1.7.0
- updated to check_mysql_health 2.1.6
- updated to Thruk 1.1.1
- updated to Mod-Gearman 1.0.10
- updated to Gearman 0.23
- updated to Webinject 1.68
- updated to PNP4Nagios 0.6.15
- OMD
- added 'reuse' option
- fix 'omd start core' (did simply nothing)
- added missing libperl dependency (fixes #217)
- fixed problem with mod_proxy sending duplicate pages
- fixed problem with mount on redhat/centos 6.0 (fixes #195)
- Fixed problem when doing 'omd restart' without mounted tmpfs
- Debian Package:
- Added the mandatory maintainer name
- mod_fcgid: Increased file upload limit from 128kb to 3MB
- npcd: Changed init script to find running processes with lost pidfile
0.48 May 22 2011
- updated to Check_MK 1.1.10p3
- updated to Shinken 0.6.4
- updated to Thruk 1.0.4
- added Mod-Gearman 1.0.5
- added Gearmand 0.14
- updated Webinject 1.67
- updated to NagVis 1.5.9
- updated to PNP4Nagios 0.6.13
- added check_multi v439* (2011-02-19)
- OMD
- Added @omd setversion@ command to change the default version of OMD
- Improved merge handling during @omd update@
- @omd cp@ now supports --no-rrds and --no-logs. Also -N/--no-past which combines these options. Please read the updated man page for details.
- Fixed bug while removing sites
- Added @omd diff@ command to show added/deleted/changed files compared to a clean site.
- Restructured hooks
- added option --bare to @omd status@