-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
6755 lines (6258 loc) · 390 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
1.2.7i1:
Core & Setup:
* 1759 Packed RPM and DEB agent packages are now shipped with normal Check_MK package...
* 1228 Linux Agent: Now supports systemd...
* 2167 SNMPv3: Added support for using SNMP contextes in requests...
* 1791 FIX: Fix problem where many bogus RRD files for Check_MK service would be created...
* 1792 FIX: Fix path to special agents in case of manual installation
* 1797 FIX: Fix incomplete configuration during checking when using CMC...
* 1832 FIX: Fix "global name 'splitted' is not defined" in bulk inventory...
* 1808 FIX: Fixed broken nagios config when using RBN without a host defined...
* 1842 FIX: Rewrote implementation of service discovery (formerly inventory)...
* 1869 FIX: Deleting outdated persisted agent sections now
* 1919 FIX: cmk --snmpwalk: continue if one of the OIDs to walk fails
* 1880 FIX: inventory_processes rules can now be configured without setting levels...
* 1882 FIX: Fixed exception "filesystem_levels" not defined when compiling config for nagios
* 1977 FIX: Dramatically reduced size of Check_MK check helper processes...
* 1982 FIX: Fixed exception during checking regular checking when having checks without discovery function
* 2012 FIX: Piggyback hostname translation can now deal correctly with umlauts
* 2014 FIX: Fixed different issues running Check_MK on CentOS 5.x
* 2037 FIX: Inventorize piggy back data even if access to normal agent fails
* 2016 FIX: Fixed service discovery / monitoring on hosts which have only piggyback data (e.g. ESX VMs)...
* 2089 FIX: Debug mode shows details about errors in autochecks as expected now
* 2093 FIX: Fixed handling of check_mk commandline parameter "-c"
* 2187 FIX: Avoid CLOSE_WAIT sockets for agent connection in case of timeouts...
Checks & Agents:
* 1665 agent_netapp: New special agent for NetApp monitoring via Web-API...
* 1782 msexch_replhealth: new check for monitoring health of MS Exchange DAG
* 1458 msexch_dag.contentindex, msexch_dag.copyqueue, msexch_dag.dbcopy: new checks for MS Exchange Mailbox Servers in a DAG...
* 1207 services: Check can now be configured with additional names for matching...
* 1786 casa_cpu_mem, casa_cpu_temp, casa_cpu_util, casa_fan, casa_power: support more devices, also C100G
* 1787 docsis_channels_upstream, docsis_channels_downstream: now also support CASA 100G
* 1519 etherbox.temp: Now supports lower levels, output configurable to Celsius, Fahrenheit or Kelvin...
NOTE: Please refer to the migration notes!
* 1520 hwg_temp: Now uses new temperature ruleset, allows lower levels and alternate output units....
NOTE: Please refer to the migration notes!
* 1521 carel_sensors: Now uses new Temperature WATO-Rule...
NOTE: Please refer to the migration notes!
* 1459 netscaler_cpu: new check to monitor the CPUs of Citrix Netscaler Appliances
* 1460 df_netscaler: new check to monitor filesystem usage on Citrix Netscaler devices
* 1820 mem.linux: new dedicated check for Linux memory management...
NOTE: Please refer to the migration notes!
* 1831 diskstat: detect multipath devices and handle them instead of the physical paths...
* 1462 netscaler_ha: new check to monitor the HA state of Citrix Netscaler appliances
* 1838 emc_datadomain_mtree: New check for EMC Datadomain MTrees...
* 1464 netscaler_mem: new check to monitor the memory usage of Citrix Netscaler Appliances
* 1822 oracle_undostat: rule for non space error count...
* 1823 mk_oracle_crs: compatibility against CRS 10.2 + 11.1...
* 1825 oracle_recovery_status: backupcheck for user managed backups...
* 1826 oracle_dataguard_stats: New rule for apply_lag_min, removed default rule...
* 1807 check_mail: Added new check to check IMAP/POP3 login (incl. forwarding of mails to event console)...
* 1841 fileinfo, fileinfo.groups: new parameter for selecting ranges of the time of the day...
* 1668 Interface groups: Can create groups out of interface item names...
* 1669 mrpe program check_16bit_program.cc: Monitors 16 bit programs on windows...
* 1849 netscaler_dnsrates: new check for DNS statistics of Citrix Netscaler Loadbalancers
* 1850 netscaler_health.fan, netscaler_health.psus, netscaler_health.temp: new checks to monitor the health of Citrix Netscaler Loadbalancers
* 1214 ups_bat_temp,ups_capacity,ups_in_freq,ups_in_voltage,ups_out_load,ups_out_voltage: Checks now detect more UPS Devices...
* 1523 lnx_thermal: Now supports setting levels...
NOTE: Please refer to the migration notes!
* 1670 winperf_processor: fixed invalid check values on counter wrap...
* 1524 kentix_temp: Now supports setting levels...
NOTE: Please refer to the migration notes!
* 1525 viprinet_temp: Now uses new Temperature WATO rule...
NOTE: Please refer to the migration notes!
* 1673 netapp_volumes: now able to configure levels by magic factor
* 1854 netscaler_tcp_conns: new check to monitor tcp connections on Citrix Netscaler Loadbalancer Appliances
* 1857 ibm_svc_portsas: new check and extended special agent for IBM SVC / Storwize V3700 / V7000 devices
* 1918 ps: new option for checking the age of a process (on Linux)...
* 1920 df: Linux filesystem check now supports displaying data reserved for root...
* 1675 esx_vsphere_hostsystem.cpu_util_cluster: Averaged CPU utilization of all cluster nodes...
* 1216 hp_procurve_cpu: Can now be configured with Wato
* 1676 if.include: now able to detect grouped interfaces...
* 1928 netapp_api_if: Improved handling and check output of virtual interfaces...
* 1827 oracle_tablespace: WATO rule for default increment...
NOTE: Please refer to the migration notes!
* 1217 dell_om_sensors: Check now uses generic temperature features...
NOTE: Please refer to the migration notes!
* 1929 netapp_api_if: improved inventory and check output of virtual interfaces...
* 1218 Inital Agent Version for zOS (IBM Mainframes)...
* 1948 Livedump: Host names can now be prefixed with an individual string...
* 1958 akcp_daisy_smoke: added new check for smoke sensors on expansion boards which are daisy chained to an AKCP securityProbe 5E...
* 1219 synology_disks, synology_fans, synology_info, synology_raid, synology_status, synology_update: Multiple Synology NAS Checks
* 1968 qlogic_fcport, qlogic_sanbox, qlogic_sanbox_fabric_element: Supporting SAN Switch Module for IBM BladeCenter(R) now
* 1220 if,if64: Discovery can now be based on port description...
* 1930 Windows agent: now able to unpack plugins.cap file (created by Check_MK agent bakery)...
* 1933 esx_vsphere_objects: now able to set a different alert level when the host/vm reports 'unknown'...
* 1860 df and other filesystem checks: process total fs size as perfdata...
* 1222 mbg_lantime_ng_state: Support for the new Meinberg Lantime MIB (MBG-LANTIME-NG-MIB)...
* 1961 akcp_exp_humidity, akcp_exp_smoke, akcp_exp_temp, akcp_exp_water: New checks to monitor AKCP securityProbe and expansion boards...
* 1991 emc_datadomain_temps: make configurable via WATO, add Perf-O-Meter...
NOTE: Please refer to the migration notes!
* 1939 check_ftp: changed service description if the ftp port differs from 21...
NOTE: Please refer to the migration notes!
* 1992 df: Show usages near to zero with a higher precision - not simply as 0.00
* 1996 kernel.util: Also output values for steal and guest (no PNP template yet)
* 1998 statgrab_net: New implementation of network interface monitoring via statgrab...
NOTE: Please refer to the migration notes!
* 1889 cmciii.phase: New check to monitor input phases for Raritan PDUs
* 2005 services: change service description from service_ to Service or new installations
* 1862 netscaler_vserver: new check to monitor VServers on Citrix Netscaler Appliance
* 2036 docsis_channels_upstream: Add handling for codewords (WATO rule, rate computation, Perf-O-Meter)
* 1947 agent_ucs_bladecenter: Monitors UCS Bladecenter via Web-API...
* 2039 mk_logwatch: new per-logfile-options maxfilesize and maxlinesize...
* 1891 apc_symmetra: Now supports setting levels on remaining battery time...
* 1892 hp_procurve_mem: Now supports setting levels in WATO...
NOTE: Please refer to the migration notes!
* 1952 check_mk_agent.linux: integrated runas plugin into check_mk_agent.linux...
* 2083 Added Siemens PLC (SPS) monitoring...
* 1893 cisco_power: Now discovers all power supplies, not only redundant ones...
* 2052 winperf_if: Now able to automatically group teamed interfaces and more...
NOTE: Please refer to the migration notes!
* 2053 New windows plugin: windows_if.ps1, renders wmic_if.ps1 obsolete...
* 1864 akcp_exp_drycontact, akcp_exp_temp : change to service output and levels...
* 2043 ibm_svc_mdiskgrp: Fix computation of capacity, show and check provisioning...
NOTE: Please refer to the migration notes!
* 2044 IBM SVC checks: renamed services, remove bogus IBM SVC...
* 1894 hwg_humidity: New check to monitor humidity sensors attached to HWg-STE...
* 1866 ibm_imm_fan, ibm_imm_temp: new checks to monitor fans and temp sensors on IBM Servers via the IMM
* 1867 ibm_imm_voltage: new check to monitor power supply and CMS battery voltages on servers via IBMs IMM
* 1225 sansymphony_alerts,sansymphony_pool,sansymphony_ports,sansymphony_serverstatus,sansymphony_virtualdiskstatus: New Checks for Datacore Sansymphony...
* 2056 winperf_processor: additionally reports user and privileged(system) time...
* 1226 mysql: New check to show the version of the mysql deamon
* 2100 if64: check can now impose limits on the number of outgoing and incoming non-unicast packets per second
* 1227 mysql_ping: New Check to detect misconfiguration of the mk_mysql plugin
* 2134 winperf_phydisk: allow device to appear more than one time in agent output...
* 2102 mbg_lantime_ng_fan, mbg_lantime_ng_state, mbg_lantime_state: new checks for Meinberg LANTIME Clocks supporting the new MBG-LANTIME-NG-MIB
* 2057 New checks for postgreSQL monitoring...
* 2137 diskstat: new implementation of Linux Disk IO check...
NOTE: Please refer to the migration notes!
* 1229 MySQL: The MySQL Plugin now supports multiple instances...
NOTE: Please refer to the migration notes!
* 2138 df: Filesystem check now outputs performance data for inodes (and shows a graph)
* 1231 mssql_counters.file_sizes: It's now possible to set levels for Filesizes
* 2104 aix_if: new agent section and check...
NOTE: Please refer to the migration notes!
* 2061 DB2 monitoring: Additional checks for AIX (and presumably linux)...
* 2105 mbg_lantime_ng_refclock: new check for Meinberg LANTIME clocks supporting the new MBG-LANTIME-NG MIB
* 2062 grouped interfaces: additional information in check output and new port state 'degraded'...
NOTE: Please refer to the migration notes!
* 2153 siemens_plc.duration siemens_plc.flag siemens_plc.info: New Checks for Siemens PLC devices
* 2063 winperf_if: now also able to detect the interface port state 'lowerLayerDown'...
* 2154 Interface-Checks: Separate traffic thresholds for in and out are now possible...
* 2155 siemens_plc_counter: added new check for monitoring increasing counter values
* 2106 aix_sap_processlist: new check and agent plugin to monitor the process list of SAP Application Server Instances on AIX systems
* 2156 Interface-Checks: Can now be configured to use predictive traffic levels
* 2165 aix_agent: Local checks can now also be executed in run cached mode...
* 1830 oracle_rman: added detection of INCR0/1 backups...
NOTE: Please refer to the migration notes!
* 1900 mk_oracle: added oracle session environment...
* 1901 mk_oracle: IGNORE_DB_NAME for special environments...
* 1902 mk_oracle: Performance hint for RMAN checks...
* 1903 mk_oracle: Remote Monitoring of Oracle Databases...
* 2183 ps: allow levels of used RAM in percentage of total RAM of host...
* 2184 statgrab_mem: converted to the same logic as the other memory checks...
NOTE: Please refer to the migration notes!
* 2185 canon_pages: added support for b/w A4 and color A4/A3 counters
* 2186 check_mk_agent.aix: use GNU df in order to exclude NFS for filesystem monitoring...
* 1457 FIX: logins: new check renamed from "users" check...
NOTE: Please refer to the migration notes!
* 1762 FIX: lnx_thermal: Now ignoring trip points with level 0...
* 1763 FIX: diskstat: Fixed error in config example of manpage
* 1755 FIX: cisco_vpn_tunnel: fix exception in case tunnel is not OK
* 1756 FIX: agent_ibmsvc: do not abort execution if one of the sections fail
* 1778 FIX: cisco_secure: do not warn for port where port security cannot be enabled
* 1764 FIX: mk_sap: Fixed exception when saving status file
* 1663 FIX: winperf_if: fixed incorrect enumeration of interface index...
* 1204 FIX: veeam_client: Not longer throwing an error in case of currenlty running backup
* 1666 FIX: inventory check esx_vsphere_hostsystem: no longer crashes if information is missing...
* 1767 FIX: fc_port: Re-enabled check discovery of this check
* 1768 FIX: brocade_fcport/brocade_info: Only try to discover these services when device provides correct info...
* 1769 FIX: megaraid_bbu: Fixed exception for some controllers reporting "full charge capacity"
* 1770 FIX: megaraid_pdisks: Now handling unconfigured good/bad states...
* 1771 FIX: domino_mailqueues: Fixed exception during inventory when no data usable data available
* 1208 FIX: cifsmounts: Detects now unreachable CIFS mounts
* 1772 FIX: lparstat_aix: Check handles already working agent output again
* 1793 FIX: fritz: avoid Exception in inventory function of fritz checks if agent output is empty
* 1795 FIX: Fix internal exception in WATO rule for filesystems...
* 1522 FIX: quantum_libsmall_door, quantum libsmall_status: Fixed broken scan function
* 1818 FIX: dell_poweredge_cpu: Fix exception where BrandName is missing
* 1819 FIX: dell_poweredge_temp: Make output and service description consistent with other temperature checks...
NOTE: Please refer to the migration notes!
* 1388 FIX: oracle_asm_diskgroup: fixed wrong calculation of free space in NORMAL/HIGH redundancy Disk Groups...
* 1389 FIX: oracle_rman: detect failed jobs...
* 1390 FIX: mk_oracle: better detection of RMAN Archivelog Backups...
* 1391 FIX: oracle_instance: New function for Primary Database not OPEN...
* 1833 FIX: jolokia_metrics.gc: fix recently introduced exception for missing variable
* 1463 FIX: juniper_screenos_mem, juniper_trpz_mem: pnp template fixed
* 1806 FIX: services check was not recognizing configured state when no service was found
* 1840 FIX: oracle_tablespaces: fix implementation of magic factor
* 1848 FIX: df: title of pnp graphs for filesystem checks fixed...
* 1821 FIX: mk_oracle: changed connection to dedicated server mode...
* 1824 FIX: oracle_recovery_status: removed default values from Check...
* 1209 FIX: livestatus_status: Check handles cluster using in cluster now
* 1809 FIX: cisco_temp_perf: Fixed exception when no temperature threshold provided by device
* 1812 FIX: juniper_screenos_mem: Fixed too large memory reported (byte <> kbyte mixup)
* 1814 FIX: agent_ibmsvc: Fixed missing executable flag
* 1817 FIX: The Check_MK service did not result in CRITICAL/WARNING states when using Nagios as core...
* 1844 FIX: oracle_crs_res: fix computation of node a ressource is running on...
* 1852 FIX: solaris_multipath: this check now works with inventory to remember the number of total paths...
NOTE: Please refer to the migration notes!
* 1828 FIX: oracle_dataguard_stats: Bugfix for 'params_value' referenced before assignment...
* 1853 FIX: cisco_power, cisco_fan, cisco_temp_perf: fixed service description for some special cases...
NOTE: Please refer to the migration notes!
* 1671 FIX: windows agent: fixed gaps in eventlog monitoring after agent restart...
* 1856 FIX: ibm_svc_array ibm_svc_mdisk ibm_svc_mdiskgrp ibm_svc_portfc: made checks more robust for varying number of parameters of IBM SVC agent plugin...
* 1874 FIX: ps: Old process inventory configurations work now again...
* 1875 FIX: Fixed possible exceptions of CMC Check_MK helpers when using some custom checks...
* 1858 FIX: docsis_channels_downstream: allow for negative values of power in dBm
* 1847 FIX: oracle_logswitches: Fixed description of WATO rule for levels...
* 1877 FIX: printer_input/printer_output: Check can now handle non reported capacity unit
* 1921 FIX: kemp_loadmaster_realserver: reimplementation, now use vendor specific information
* 1859 FIX: cups_queues: linux agent now runs section cups_queues in cached mode...
* 1881 FIX: omd_status: Check works now even when a site is reported as not OK...
* 1923 FIX: cisco_qos: Fixed exception in discovery that might lead to missing services
* 1924 FIX: cisco_power: Fixed missing power supplies in case where name is not unique
* 1886 FIX: win_printers: Fixed exception in WATO when displaying default parameters
* 1887 FIX: Logwatch event console forwarding: Better handling of logwatch states
* 1969 FIX: apc_symmetra: Fix wrong critical state "0 batteries need replacement"
* 1926 FIX: ps: reenable compatiblity with existing configurations...
* 1970 FIX: lparstat_aix: Made the check compatible to different kinds of lparstat output...
* 1971 FIX: printer_input/printer_output: Discovery is using name field when available no...
NOTE: Please refer to the migration notes!
* 1931 FIX: agent_vsphere: no longer crashes when host has no license information
* 1932 FIX: check_http: Check SSL Certificate: did not work when SNI Option was set...
* 1975 FIX: check_bi_aggr: Ignoring proxy settings from environment now
* 1936 FIX: check_form_submit: fixed crash on certain form fields with unnamed input elements
* 1960 FIX: akcp_sensor_drycontact: Service description prefix changed from "Device" to "Dry Contact"...
NOTE: Please refer to the migration notes!
* 1938 FIX: docsis_channels_upstream: fixed missing checks if channels had the same ChannelId...
* 1940 FIX: ps: Fixed a rare crash on malformed agent output...
* 1941 FIX: df.include: fixed exception on emtpy filesystems...
* 1942 FIX: netapp_api_volumes: fixed exception when performance data generation was enabled
* 1993 FIX: solaris_multipath: Fix detection of expected number of paths
* 1944 FIX: hr_mem: no longer reports incorrect memory values when cached memory values are broken...
* 1994 FIX: lparstat: Support new AIX version with two new columns nsp and utctc
* 1997 FIX: checkpoint_connections, checkpoint_packets: Detect more recent devices
* 1999 FIX: raritan_pdu_inlet_summary, raritan_pdu_inlet, ups_socomec_outphase: renamed services to be consistent...
NOTE: Please refer to the migration notes!
* 2000 FIX: check_mk_agent.freebsd: Add missing <<<local>>> section, plugins was twice instead...
* 2004 FIX: windows_updates: fix exception in WATO when displaying default levels
* 2006 FIX: services: Add WATO rule for configuring parameters of discovered checks...
* 2007 FIX: md: Handle rebuild of RAID 5 correctly, handle sitatuation of replacement correctly...
* 2028 FIX: hyperv_vms: new plugin that allows spaces in VM names...
* 2013 FIX: stulz_pump: Fixed exception during checking for some devices
* 2030 FIX: netapp_api_temp: add Perf-O-Meter, make configurable via WATO...
NOTE: Please refer to the migration notes!
* 2031 FIX: brocade_mlx_temp: make configurable via new WATO rule, add Perf-O-Meter, add default levels...
NOTE: Please refer to the migration notes!
* 2032 FIX: brocade.temp: use new generic WATO rule, add Perf-O-Meter...
NOTE: Please refer to the migration notes!
* 2033 FIX: check_mk-zfs_arc_cache: add Perf-O-Meter
* 2034 FIX: netapp_api_volumes: added Perf-O-Meter
* 2035 FIX: check_mk-netapp_api_if, check_mk-if_brocade: added missing Perf-O-Meters
* 2017 FIX: Solaris-Agent: Prevent hanging agent in uptime section...
* 1890 FIX: cisco_temperature: Replaces cisco_temp_perf and cisco_temp_sensor...
NOTE: Please refer to the migration notes!
* 2018 FIX: ibm_imm_health: Fixed exception when host does provides empty SNMP data
* 2019 FIX: heartbeat_crm: Be compatible to yet unknown crm_mon output format
* 2048 FIX: netapp_api_fan, netapp_api_psu, netapp_api_temp: fixed typo in service description Shelfes -> Shelves
NOTE: Please refer to the migration notes!
* 2021 FIX: if_lancom: Also used for checking ELSA/T-Systems branded devices
* 2022 FIX: SNMP: Fixed handling of backslashes in SNMP data...
NOTE: Please refer to the migration notes!
* 1863 FIX: cisco_power: fix for cases with a slash in the device description of a power supply...
NOTE: Please refer to the migration notes!
* 2023 FIX: if_lancom: Handle point-2-point interfaces of newer firmwares correctly
* 2027 FIX: fc_port: Fixed exception when wirespeed is reported as 0 by the device
* 1224 FIX: Fixed rare Bug in case of clusterd network interfaces...
* 2079 FIX: freebsd agent: Was unable to find ntpq command with FreeBSD10...
* 2082 FIX: jolokia_metrics.mem: Fixed levels on total memory usage
* 2049 FIX: window agents: prevent errors with invalid plugin output...
* 2050 FIX: netapp_api_if: Fixed invalid speed warning for virtual interface groups...
* 2086 FIX: apc_ats_status: Fixed exception when source different than selected source
* 2087 FIX: netapp_api_temp: Fixed exception when dealing with old discovered checks...
* 2051 FIX: windows agent: no longer outputs stderr of local and plugin scripts...
* 2088 FIX: cisco_cpu: Dealing with non CPU utilization information correctly...
* 2055 FIX: agent_vsphere, licenses check: now really configurable on / off...
* 2091 FIX: The check-mk-agent RPM packages can now update the old check_mk-agent named RPMs...
* 2046 FIX: Replace GBit with Gbit, MBit with Mbit, KBit with Kbit...
* 2098 FIX: ibm_svc_mdiskgrp: fix rounding bug, decimal digits of size (GB, TB) were always lost
* 2094 FIX: Fixed missing agent section when ntpq times out after 5 seconds
* 2095 FIX: oracle_crs_voting: Also handling voting disks with id 0 (seen on old CRS 10.2.0.5.0)...
* 2101 FIX: cisco_temperature: check can now handle cases when no description of the sensor is available
* 2096 FIX: jolokia_metrics: Now deal with missing thread related infos (jboss might only send ThreadCount)
* 1895 FIX: temperature.include: Fixed Fahrenheit handling...
* 2097 FIX: apc_symmetra: Fixed false alert during self test...
* 2143 FIX: Solaris-Agent: Fixed broken zfsget checks on solaris 10
* 2144 FIX: Fixed exception in inventory GUI when trying to render dates of inventorized exe files...
* 2058 FIX: ucs_bladecenter_fans.temp, ucs_bladecenter_psu.chassis_temp: fixed broken temperature checks (nagios only)...
* 2059 FIX: ucs_bladecenter_if: fixed exception when fibrechannel interfaces were not configured...
* 1233 FIX: Fixed fileinfo check for solaris in case of missing files
* 1236 FIX: multipath: Now show correct error in case of removed multipaths instead of check crash
* 2152 FIX: apache_status: Fixed plugin to work on CentOS/RedHat 5.x...
* 1896 FIX: ups_socomec_capacity: Now no longer critical when device reports -1 minutes left on battery...
* 1238 FIX: check_mk_agent.linux: Do not execute the multipath section if no /etc/multipath.conf exsist.
* 1240 FIX: multipath: improved detection for not installed multipath
* 2159 FIX: netapp_api_disk.summary: Changed default thresholds to WARN on the first broken disk, CRIT on 50%...
* 2161 FIX: heartbeat_crm: Fixed UnboundLocalError exception on some systems
* 2162 FIX: citrix_sessions: Handle not set thresholds on single values correctly...
* 2163 FIX: printer_supply: Now auto detects whether or not a supply is consumable or filling up...
* 2164 FIX: printer_supply: Fixed handling different capacities than percentage when used upturned levels
* 2169 FIX: jolokia_metrics.threads: Fixed graph template...
* 2170 FIX: jolokia_metrics_gc: Fixed exception when GC time not reported by server
* 2109 FIX: netapp_api_volumes: now using the defined levels when using the Nagios core
* 1241 FIX: hp_prolaint: Unkown state is not longer handled as OK...
* 2171 FIX: netapp_api_vf_status: Handling "DR backup" as normal (OK) state now
* 1898 FIX: mk_oracle: Bugfix for error while loading shared libraries: libsqlplus.so
* 1899 FIX: mk_oracle: backport of werk 1564 from agent...
* 2110 FIX: netapp_api_aggr: check did not take configured levels when using Nagios
* 1954 FIX: fileinfo / fileinfo.groups: Fixed discovery function for fileinfo groups and equalize agent output of fileinfo agents...
Multisite:
* 1758 Improved exception hander: Shows details without additional debug request, added mailto link for error report...
* 1788 New personal setting for start page, right after login...
* 1776 Dashboard: Allowing unicode characters in static text dashlet
* 1210 New Downtime Filter for comments...
* 1811 Added new filter for regex based filtering of contacts to log based views...
* 1667 Sidebar snapin 'Tree of Folders' and 'WATO folder' filter now available on slave sites...
* 1815 Dashboard: Sidebar snapins can now be added as dashlets to dashboards...
* 1973 Added intelligent host and service type icons to default views...
* 1979 Relative timestamps display warnings when they should be in future but are in past
* 1937 cpu.loads: performance graph now displays number of CPUs
* 2040 Allow commands for setting downtimes and acknowledging on BI aggregates...
* 2042 Services are now sorted in a natural way, this affects services containing numbers...
* 2140 Remove PNP Timeranges from range selection, put these ranges directly into the list...
* 1239 Fixed /treasures/downtime script to work with the new visuals
* 2166 LDAP: Multiple LDAP groups can be configured for assigning single roles to users...
* 1781 FIX: Fix broken grouping by host/service group in availability
* 1783 FIX: Finish the view "History of Scheduled Downtimes"...
* 1206 FIX: Hostname not longer shown as column in host views
* 1766 FIX: Fixed exceptions in Web GUI when host or service groups used non ascii characters in names...
* 1773 FIX: Fixed different exceptions when using localized multisite
* 1774 FIX: IE: Always use the latest available rendering enginge of the used browser...
* 1777 FIX: Fixed js error making the "add to visual" link break on pages with context...
* 1798 FIX: Filters are now retained when adding a view to a dashboard...
* 1799 FIX: Dashboards: Existing views added to dashboards now get a correct title / title_url
* 1800 FIX: Fixed umlauts and HTML tags in exception texts...
* 1796 FIX: Fix filtering in Multisite View BI Boxes...
* 1802 FIX: Links in messages like "successfully sent X commands" are now working again...
* 1803 FIX: Fixed exception in Check_MK prediction page...
* 1804 FIX: Fixed prechecked checkboxes in view actions after first action submit...
* 1843 FIX: Fixed crash in display of crash report for precompiled host checks
* 1870 FIX: Joined columns were empty in CSV, JSON or PYTHON exports of view...
* 1871 FIX: Site filter is only shown as host related filter now...
* 1872 FIX: View editor hides filter selection for object types which have no filter to choose...
* 1876 FIX: User sorting of views can now be disabled again
* 1884 FIX: Fixed exception in virtual host tree snapin
* 1885 FIX: Fixed filtering by software versions in software package search
* 1972 FIX: Prevent erasing of quicksearch field when sidebar is reloaded (e.g. during activate changes)...
* 1221 FIX: veeam_client: Multisite perfometer is now more robust
* 1989 FIX: Fix sorting of services in availability views
* 1978 FIX: Fixed linking to other views using "joined columns"...
* 1980 FIX: logwatch: Fixed exception when acknowledging errors of a single logfile on a single host
* 1981 FIX: Not trying to render view in view editor when the view is not valid
* 1983 FIX: Fixed special case in language configuration via user profile...
* 1984 FIX: Fixed loosing sidebar after switching to/from edit mode in dashboard edior on page reload...
* 1985 FIX: PNP graph dashlet handles graphs in distributed setups correctly...
* 1945 FIX: doc/treasures/downtime script: was no longer working because of latest changes in the GUI...
* 2008 FIX: Users created during basic auth login get the role assigned configured in "default user profile"...
* 2011 FIX: "Service Group" view sorts/groups the services now correctly by host
* 2024 FIX: Views: Fixed problem when filtering views by strings containing umlauts...
* 2054 FIX: Sidebar snapin "Tree of folders": fixed exception when using localized default value...
* 2090 FIX: Fixed errors when editing / rendering custom url dashlets in some cases...
* 2092 FIX: Dashboards: Possible to configure an empty custom title
* 2145 FIX: LDAP-Sync: Handling user ids with special characters more user friendly...
* 2149 FIX: LDAP: The diagnostic log has been changed to use a fixed path...
* 2150 FIX: Reworked internal logging mechanism...
* 1953 FIX: Fixed processing of html processing in input fields...
* 2157 FIX: LDAP: Fixed group-to-role/group-to-contactgroup sync with OpenLDAP (using posixGroup)
* 2141 FIX: Fix computation of explicit time ranges with time of day...
* 2142 FIX: Fix non-working option for disabling column headers in grouped boxed views...
* 2168 FIX: Fixed automation actions with transid=-1 when using basic authentication
WATO:
* 1760 Added search form to manual checks page
* 1785 Upload SNMP MIBs via WATO...
* 1461 msexch_dag.copyqueue: added a WATO rule for this check
* 1868 "Successfully created the host" message is also shown on host diagnose page now
* 1674 ibm_svc_license / other license checks: now able to configure limits...
NOTE: Please refer to the migration notes!
* 1934 WATO Web-API: Documentation is finally available...
* 1935 WATO Web-API: Reduced number configurable role permissions...
* 1949 ibm_svc_host / other license checks: now able to configure limits...
* 1950 ibm_svc_mdisk / disk checks: now able to configure the return state for state and mode of disk...
* 1951 check_http: now able to configure warning and critical limit for certificate age...
* 2136 Unify headers of Host/Service rules, EC rules and notification rules...
* 1761 FIX: Ruleset search is now consistent for host & serviceparameters and manual checks
* 1765 FIX: Fixed bug when generating nagvis backends while having sites with livestatus proxy configured...
* 1789 FIX: Fix preview of passive checks in WATO list of services
* 1790 FIX: Fix WATO parameters page for passive checks...
* 1794 FIX: Fix exception in WATO service list in case of vanished checks
* 1805 FIX: Changing roles marks sites where users can login dirty for sync now...
* 1211 FIX: Fixed g_git_messages error on activate changes...
* 1212 FIX: Fixed default value in wato parameter page for timeperiods...
* 1816 FIX: Fixed garbled output on "rename host" result page
* 1879 FIX: Not showing "only show permitted hosts/services" option for users not having "see all" permissions...
* 1922 FIX: Fix exception in saving of hosttags if hosttag has at least one auxiliary tag
* 1883 FIX: Fixed lossing service context when cloning a rule
* 1925 FIX: Fix missing auxilliary tags that have their own topic...
* 1927 FIX: Fixed level description in WATO rules, change from if above into at
* 1976 FIX: Sorting BI rule choice dropdown field entries now
* 1986 FIX: Added nicer error message when calling the rename host page with a non existant host
* 1987 FIX: Editing auxtags shows existing topics in dropdown instead of as "create new topic"
* 2001 FIX: Fix exception of missing .site when editing a non-existing host
* 2002 FIX: Mark slave sites as dirty if BI aggregates are changes and login is allowed...
* 2009 FIX: Fixed styling of site login page for establishing a distributed monitoring WATO sync...
* 2003 FIX: Fix saving of "Users are allowed to directly login into the Web GUI of this site"...
* 2010 FIX: Improved error message when trying to add group assignment rule without having a group configured
* 1946 FIX: WATO Web-API: edit host action does no longer unset all unspecified attributes...
* 1223 FIX: Fixed manual configuration of ntp peer check...
* 2025 FIX: Fixed exception when synchronising custom ldap attributes in distributed WATO setup
* 2026 FIX: Fixed exception when using umlauts in notification plugin descriptions...
* 2078 FIX: Fixed exception with some snapshots when using a localized GUI...
* 2080 FIX: Fixed UnicodeDecodeError when using a localized GUI on notification configuration page
* 2084 FIX: Disabled notification for a user is now shown on profile page even when not permitted to edit...
* 2045 FIX: Avoid fetching SNMP data when showing service list in WATO - unless Full Scan is pressed
* 2047 FIX: Allow overriding existing WATO rules by own files in local/ hierarchy...
* 2146 FIX: In distributed environments user notification rules trigger a profile synchronisation now...
* 2158 FIX: Condition column in WATO rule tables has now a flexible width...
* 2160 FIX: Fixed rename of hosts where a host with this name did exist before
Notifications:
* 1662 notification plugin spectrum: finalized script. now able to handle host notications
* 1213 New Notification macros $SERVICEFORURL$ and $HOSTFORURL$...
* 2041 Notification Spooler can now handle incoming and outgoing persistent TCP connections...
* 2135 Allow to filter notification contacts based on values of custom macros...
* 1235 Added notification plugin for Braintwoer SMS Gateways...
* 2188 Rule based notification now allow match for notification comment...
* 1661 FIX: mknotifyd: improved performance when receiving forwarded notifications
* 1664 FIX: mknotifyd: further performance improvements for notification forwarding
* 1205 FIX: RBN: Fixed match contactgroup condition...
* 1810 FIX: Rule based notifications: Fixed output of non contact mail recipient address in analyze table...
* 1988 FIX: Gracefully handle invalid empty bulk notification files from previous buggy versions
* 2015 FIX: Fixed sending notifications for services with umlauts in names...
* 2038 FIX: Log complete Email address into monitoring history when notifying explicity addresses
* 2081 FIX: Improved logging of mkeventd in error cases
BI:
* 1784 FIX: Fix exception in BI Boxes when parents are being used
* 2020 FIX: Fixed non working FOREACH_CHILD mechanism for BI rules
* 2085 FIX: Host search for child nodes can now filter child nodes by tags or patterns...
Reporting & Availability:
* 1990 FIX: Fix two exceptions in PDF exports of host group views
* 2189 FIX: Allow changing graph number from 1 to "all" when editing PNP graph in report...
Event Console:
* 1845 Keep record of original source IP address of a syslog message or SNMP trap...
* 1873 SEC: Escaping event text of event console messages correctly in views...
* 1672 Now able to reclassify logwatch messages before forwarding them to the event console...
* 1878 SEC: Fixed possible shell injection when filtering the EC archive...
* 2099 Allow replication of Event Console rule and settings...
* 2107 mkeventd: can now handle syslog format of Sophos firewalls
* 1839 FIX: Fix exception when notifying EC alert into monitoring for traps (because PID is missing)
* 1813 FIX: Fixed bug in event console rule editor when no contact groups configured
* 1974 FIX: Event console views were randomly ignoring host filters...
* 1861 FIX: exception in mkeventd when archiving certain event log lines
* 1865 FIX: mkeventd: fixed exception when executing a shell script as action
* 2133 FIX: Fix visualization of global EC setting for Rule Optimizer...
* 2139 FIX: Fix exception in Event Console when archiving events with match groups and non ASCII characters
* 2151 FIX: Fixed wrong time in events when forwarding logwatch to EC between timezones...
HW/SW-Inventory:
* 1846 Keep track of changes of software and hardware...
* 1855 esx_systeminfo: new inventory plugin to retrieve info about the host operating system for ESX servers
* 1851 FIX: win_exefiles: inventory check can now handle time stamps in us english locale
* 1943 FIX: inventory plugin win_os: no longer detects incorrect i386 architecture...
* 1995 FIX: dmidecode: Fix parsing when memory devices are listed before controller
* 2147 FIX: Fixed exception in HW-/SW-Inventory GUI with special characters in inventorized data...
* 2148 FIX: win_os: Fixed inventory of OS with older powershell versions
* 2108 FIX: win_bios win_disks win_system win_video: these inventory checks can now handle colons in the output
1.2.6b1:
Core & Setup:
* 1439 mk-job: now also available on solaris systems...
* 1648 New installations have the service to check for unchecked services enabled by default...
* 1723 New check API function get_average() as more intelligent replacement for get_counter()...
* 1725 The get_average() function from now on only returns one argument: the average...
NOTE: Please refer to the migration notes!
* 1483 FIX: Savely replace illegal vertical bars in check plugin output...
* 1431 FIX: windows_agent: fixed error on parsing unicode formatted logfiles...
* 1545 FIX: Check_MK Inventory check is now resulting in correct state on duplicate host
* 1555 FIX: Improved validation on timeperiod references of non existing periods...
* 1574 FIX: Hosts named like used python modules do not break precompiled checks anymore...
* 1624 FIX: Remove illegal characters from service descriptions of active checks...
* 1628 FIX: Remove trailing backslashes from service descriptions...
* 1649 FIX: Check_MK inventory service has been renamed to Check_MK Discovery...
* 1706 FIX: Fix file permissions when installing MKPs to 0644 or 0755...
* 1750 FIX: Handle rare cases where SNMP response string begins with a line feed...
* 1740 FIX: Changed default service discovery check intervall to 12 hours
Checks & Agents:
* 1197 climaveneta_temp: New check for temperature sensors on Climaveneta clima devices
* 1167 citrix_license/esx_license: Can now be configured to always show OK as state
* 1198 climaveneta_fan: New check for fan speed on Climaveneta devices
* 1199 climaveneta_alarm: New check to display the alarm states on Climaveneta devcies
* 1484 dell_om_sensors: Use sensor name as item...
NOTE: Please refer to the migration notes!
* 1200 Docsis Checks: Now HW Rev2 of Arris Cable Modems are detected.
* 1486 mk_oracle: completely overhauled ORACLE monitoring...
* 1201 allnet_ip_sensoric: Detect Temperature Sensors now in more cases...
* 1171 Added new check for monitoring mail delivery (SMTP -> IMAP/POP3 mailbox)...
* 1444 f5_bigip_chassis_temp, f5_bigip_cpu_temp: Two new checks to replace the old f5_bigip_temp...
NOTE: Please refer to the migration notes!
* 1432 agent_vsphere: now able to monitor virtual machines snapshots...
* 1507 New optional parse_function for check API...
* 1445 quantum_libsmall_door, quantum_libsmall_status: Two new checks for monitoring small Quantum tape libraries
* 1448 domino_info: check is extended to also show and monitor the lnNotesServerState
* 1509 if, if64: New option for make inventory based on port alias...
* 1440 livedump: now able to add hosts icon_image on config generation...
* 1517 carel_sensors: New check for monitoring temperature sensors of Carel AC devices
* 1551 f5_bigip_vserver: add performance data for connections and connection rate
* 1554 mk_oracle: You can now monitor multiple ORACLE releases on the same host
* 1518 raritan_pdu_inlet, raritan_pdu_inlet_summary: Modified existing check to give one item per phase and support setting levels....
NOTE: Please refer to the migration notes!
* 1592 AIX: New Plugin to monitor errpt in logwatch style...
* 1565 mem.win: set default levels for page file to 80%/90%
* 1608 zpool_status: Add an overall state check (thx to Craig Cook)...
* 1594 ibm_svc_host: Can now be set to be always OK...
* 1595 esx_vsphere_objects_count: New Check to Ouput the number of VMs
* 1567 postfix_mailq: speedup in Linux agent for large mail queues...
* 1611 mssql.vbs: Supporting SQL-Server 2014 now
* 1568 f5_bigip_cluster_v11: new check for F5 cluster status for firmware version 11
* 1450 checkpoint_connections, checkpoint_packets: new checks to monitor Checkpoint firewalls
* 1569 check_mk_agent.openbsd: add sections for mem and lnx_if (memory and network interfaces)...
* 1451 users: new check to monitor number of users logged in on a linux system...
* 1615 qnap_disks: Added support for Fujitsu NAS QR802
* 1616 drbd: Added support for Ahead/Behind cluster states (DRBD >= 8.3.10)
* 1626 Renamed service descriptions of filesystem, process and logwatch checks...
* 1627 megaraid_ldisks: Warn if current cache or write policy differs from logical drive default policy...
* 1629 check_mk_agent.freebsd: several new features and improvements, now only use statgrab...
* 1630 smart: update in plugin that also outputs information about disks attached to a MegaRAID controller...
* 1631 juniper_bgp_state: check now detects and supports more differen device models...
* 1645 Added basic kernel section to FreeBSD agent...
* 1597 bluecat_dhcp, bluecat_dns: Checks can now be used in Check_MK Cluster Mode
* 1599 check_mk_agent.aix: Simple run_cached Feature for plugins...
* 1699 Windows agent: new option "file" for writing output into a file...
* 1684 cisco_vpn_tunnel: Now supporting VPN 3000 Conncentrator devices
* 1685 enterasys_*: Now supporting device C2G124-48 (Rev 05.02.18.0002)
* 1694 cisco_wlc/cisco_wlc_clients: Added support for Cisco AIR-CT2504-K9
* 1726 Move variable data of Linux/UNIX agents to /var/lib/check_mk_agent...
NOTE: Please refer to the migration notes!
* 1734 check_sql: Added support for DB2 (thanks to Troels Arvin)
* 1757 Check SSH can now be configured in WATO
* 1478 FIX: kernel.util, statgrab_cpu: fix computation of utilization...
* 1480 FIX: brocade_vdx_status: disable check on some devices that do not support it...
* 1485 FIX: dell_om_disks, dell_om_esmlog, dell_om_mem, dell_om_processors, dell_om_sensors: detect more devices...
* 1202 FIX: cisco_power, cisco_temp_perf: Both checks now using a new service description...
NOTE: Please refer to the migration notes!
* 1446 FIX: cisco_temp_perf: Check now finds missing sensors in case where also cisco_temp_sensor is being used....
* 1203 FIX: veeam_client: Now supports multiple Backups for one host...
NOTE: Please refer to the migration notes!
* 1437 FIX: veeam_jobs: fixed incorrect state for BackupSync job...
* 1511 FIX: oracle_jobs: avoid broken checks, make compatible with old version...
* 1513 FIX: Handle broken SNMP bulk walk implementation of Mikrotik Router firmware RouterOS v6.22...
* 1503 FIX: Fixed monitoring of multiple SAP instances with one mk_sap plugin...
* 1515 FIX: cisco_secure: fix service description, fix OK state in case of no violation
* 1449 FIX: nginx_status: agent plugin no longer honours "http(s)_proxy" env variables of root user
* 1387 FIX: mk_oracle: Correctly deal with underscore in SID for Oracle 9.2-10.1...
* 1532 FIX: mk_sap: Cleaning up old state information from sap.state file...
* 1548 FIX: bluecat_ntp: do not inventorized devices where NTP information is missing
* 1549 FIX: bluecat_threads: do not inventorize this check where information is missing...
* 1536 FIX: fritz!Box special agent now deals with new URLs (firmware >= 6.0) correctly
* 1550 FIX: zfs_arc_cache: do not inventorize of no cache information available...
* 1572 FIX: Sample configs, plugins etc. for windows agent use windows linebreaks now...
* 1575 FIX: vSphere Monitoring works with RedHat 5.x now...
* 1584 FIX: winperf_if: Fixed checks of interfaces with equal names but one with index...
* 1590 FIX: printer_supply_ricoh: Fixed broken check
* 1591 FIX: netapp_volumes: The state mixed_raid_type is now treated as non-critical state
* 1602 FIX: dell_om_esmlog: Fixed typo in plugin output
* 1603 FIX: ad_replication: fixed typo in plugin output
* 1604 FIX: mysql_slave: Dealing with situation where connection with master is lost
* 1563 FIX: Reworked configuration of process monitoring...
NOTE: Please refer to the migration notes!
* 1593 FIX: IBM SVC Checks: The Service Descriptions not longer contain IBM SVC as prefix...
NOTE: Please refer to the migration notes!
* 1564 FIX: check_mk_agent.linux: fix situation where async plugin is not executed after crash...
* 1609 FIX: zpool_status: fix problem when the zpool has a separate log or cache device...
* 1566 FIX: 3ware_disks: consider VERIFYING state as OK now...
* 1612 FIX: job: Fixed wrong reported start time for running jobs
* 1596 FIX: etherbox: Fix for the inventory in case of not connected temperature sensors...
* 1571 FIX: check_mk_agent.linux: fix output of lnx_if on Ubuntu 8.04 (on older kernels), repairs tcp_conn_stats...
* 1622 FIX: megaraid_bbu: handle case isSOHGood and consider it as critical...
* 1617 FIX: lnx_if: Deal with data provided by cluster host
* 1618 FIX: ad_replication: Output of timeLastSuccess and timeLastFailure was inverted...
* 1623 FIX: hp_proliant_mem: support for some yet unhandled status situations
* 1640 FIX: check_jolokia_metrics_serv_req: Fixed wrong levels shown for upper thresholds
* 1632 FIX: hr_fs: remove ugly "mounted on:" information appearing on Juniper devices
* 1646 FIX: hyperv_vms: Plugin garbles following plugin output when no VMs exist...
* 1647 FIX: agent_ipmi: Check_MK service gets critical now when ipmi-sensors command fails
* 1453 FIX: drbd.stats: tried to send non-numeric write order parameter to rrd...
* 1598 FIX: bluecat_dhcp: Check is not longer found in inventory if dhcp service is not activated
* 1635 FIX: multipath: fix parsing output of multipath on RedHat6 with space in alias
* 1652 FIX: kaspersky_av_quarantine: Fixed exception when a file was found in quarantine
* 1653 FIX: megaraid_pdisks: Resulting states are now hard coded within the check...
* 1654 FIX: statgrab_disk: Fixed scaling of values shown in PNP graphs...
* 1655 FIX: AIX Agent: Fixed broken filesystem checks when having PowerHA installed...
* 1656 FIX: cisco_vpn_tunnel: Refactored complete check, fixed threshold bugs...
* 1677 FIX: f5_bigip_interfaces: Cleaned up check a bit
* 1679 FIX: ups_bat_temp: Now skipping sensors which are reported to have 0 upsBatteryTemperature
* 1681 FIX: cmciii_lcp_fans: Skipping non FAN units now; cleaned up check
* 1682 FIX: cmciii_lcp_waterflow: Check can now deal with devices with a different setup
* 1701 FIX: Correctly show absolute level for CPU load in case of warn/crit...
* 1702 FIX: Fix check_notify_count: notification had been counted twice...
* 1703 FIX: ups_test: Fix computation of time since last self test...
* 1454 FIX: megaraid checks: megacli binaries in lowercase (Ubuntu..) are now also detected by the linux agent
* 1455 FIX: hp_proliant_mem: avoid a crash of the check when module_condition is empty
* 1688 FIX: juniper_screenos_mem: Fixed wrong total memory computation
* 1658 FIX: agent_vsphere: no longer crashes when decommissioned vms report no hardware information...
* 1708 FIX: cups_queues: fix outputting of current printer jobs if printer daemon is CUPS...
* 1710 FIX: omd_status: Fix totally missing section in Linux agent...
* 1711 FIX: win_printers.ps1: ignore temporary printers created by RDP terminal sessions...
* 1712 FIX: hyper_vms: fixed for snapshot VMs with (...) in their names...
* 1713 FIX: check_fstab_mounts: now correctly ignores swap space...
* 1716 FIX: windows_tasks: consider state SCHED_S_TASK_QUEUED (0x00041325) as OK now
* 1721 FIX: dell_om_mem: Handle formerly unhandled situations with multiple errors...
* 1695 FIX: brocade_vdx_status: Is now not bein inventorized anymore for devices not supporting the check
* 1722 FIX: lnx_thermal: fix invalid zero temperature if mode file is missing
* 1696 FIX: cisco_temp_sensor: Value reported of check was not always correct (precision was wrong)...
* 1727 FIX: cisco_secure: Fixed inventory exception when port security is not enabled
* 1728 FIX: cisco_temp_perf: Not inventorized anymore for hosts supporting cisco_temp_sensor
* 1724 FIX: emc_datadomain_temps: convert to new standard check output, add PNP template
* 1729 FIX: apc_symmetra_test: Cleaned up check, fixed exception when self test date is zero
* 1730 FIX: apc_symmetra: Fixed exception when last diagnose date was not known
* 1731 FIX: ipmi_sensors: Fixed agent part when ipmi-sensors call on first agent run...
* 1732 FIX: dell_powerconnect_cpu: Fixed exception during inventory for incompatible devices
* 1733 FIX: dell_powerconnect_psu: Skipping inventory of not supported System temp sesnor for M6220 devices...
* 1747 FIX: zfsget: try to speed up agent code for Linux/Solaris/FreeBSD by using -t filesystem,volume...
* 1659 FIX: windows agent: fixed output of 64 bit performance counters...
* 1748 FIX: win_dhcp_pools: fix naming of WATO rules and informal WARN/CRIT levels in performance data
* 1735 FIX: oracle_instance: Inventory function deals better with old bogus agent output
* 1736 FIX: lparstat_aix: Trying to deal with more kind of lparstat output...
* 1737 FIX: mk_sap: Working around garbled SAP state file when multiple instances were running parallel
* 1738 FIX: oracle_instance: Be compatible to old oracle agent outputs
* 1751 FIX: winperf_ts_sessions: try to fix invalid number of active and inactive sessions...
* 1739 FIX: lnx_thermal: Be more compatible to thermal devices which report no "type"
Multisite:
* 1508 Allow input of plugin output and perfdata when faking check results...
* 1493 Added config option "Default filter group" to set the initial network topology view filter...
* 1497 Implemented password policy capabilities for local users...
* 1499 SEC: Fixed XSS injections in different places...
* 1069 SEC: Replaced insecure auth.secret mechanism...
NOTE: Please refer to the migration notes!
* 1500 SEC: Preventing livestatus injections in different places...
* 1530 Dashboard: Host/service statistics dashlets now deal with the context...
* 1558 Better visualize manually changed notification enable/disable
* 1621 Sorting Check_MK* services always on top of services lists
* 1636 Crash checks now have an icon for viewing and sending a crash dump...
* 1700 Enable icon for link to host/service parameters per default now...
* 1705 Better styling of dashboard designer
* 1714 Add support for jsonp export (next to json and python)...
* 1715 Output icon information in CSV/JSON/Python export of views...
* 1164 FIX: Fixed links from servicegroup overviews to single servicegroups
* 1166 FIX: Also prevting stylesheet update issues during version updates (just like for JS files)
* 1481 FIX: Fix broken layout of Host-, Service- and Contactgroup filters
* 1482 FIX: Fix exception when editing a visual of type single host group...
* 1487 FIX: Fixed exception in Web GUI "Internal error:: name 'Filter' is not defined" in manual setups (using setup.py)...
* 1488 FIX: Fixed wrong information showing up on "Host Group" and "Service Group" views...
* 1433 FIX: Quicksearch: no longer shows an invalid search result when looking for multiple hosts...
* 1494 FIX: Fixed error in NagVis Maps snapin when some users had no contact groups assigned
* 1496 FIX: Fixed exception after editing a dashboard as user without permission to publish dashboards...
* 1436 FIX: quicksearch: search with multiple patterns (h: / s:) no longer discards the host pattern...
* 1438 FIX: quicksearch: fixed various non-working quicksearch filters...
* 1501 FIX: Legacy view formats created with 2014-09 snapshots are now converted...
* 1506 FIX: Fixed randomly hidden dashboard title...
* 1527 FIX: Fixed views missing values of some filters (serviceregex, hostgroup filters, ...)...
* 1528 FIX: Fixed actions in mobile GUI...
* 1529 FIX: Mobile-GUI: Fixed "all host problems" view not showing all problems...
* 1533 FIX: Fixed sorting of hosts with same name in "services of host" view
* 1534 FIX: Fixed filtering views in distributed setup lead to empty views...
* 1553 FIX: Fix deleting (acknowleding) of logfiles in logwatch...
* 1537 FIX: Added transformation code for user dashboards created between 2014-08 and 2014-10...
* 1538 FIX: Only allow switching sites on/off when permitted to...
* 1539 FIX: Fixed refreshing of PNP graphs in dashboards...
* 1543 FIX: Hosttag columns are now available right ater creating a tag...
* 1544 FIX: Fixed exception in complain phase in view editor...
* 1573 FIX: WATO Quickaccess snapin: Pending button is not overlapped by icons anymore
* 1557 FIX: Fix sorting of hostnames that only differ in lower/uppercaseness
* 1577 FIX: Fixed editing of views using the "Downtime for host/service" sorter or column...
* 1578 FIX: Folding states of containers with umlauts in titles are now persisted...
* 1580 FIX: Views: Hardcoded single context filters are not shown in filter form anymore...
* 1581 FIX: Single context views with missing context show an error message now...
* 1585 FIX: Dashboard: Fixed mass client CPU load consumption when making graph dashlets too small...
* 1586 FIX: Dashboard: Toggling edit/non-edit is now reflected when reloading the page
* 1605 FIX: Fixed perfometer of check check_mk-printer_supply_ricoh
* 1607 FIX: check_http: Fixed broken links in escaped plugin output
* 1614 FIX: Fixed wrong URL in webapi.py documentation
* 1619 FIX: Renamed "Hostgroups" and "Servicegroups" views to "Host Groups" and "Service Groups"
* 1638 FIX: Fixed styling small styling problems in wiki snapin
* 1641 FIX: Quicksearch: Now able to search for services with backslashes in names
* 1642 FIX: Quicksearch: Improved error handling on invalid search statements (invalid regexes)
* 1651 FIX: Consolidated painters of service list views...
* 1678 FIX: Fixed problem with garbled styles on user profile page after saving
* 1680 FIX: Fixed various dashlet designer position/resizing issues...
* 1683 FIX: Replaced a lot of old GIF images with better looking PNG images
* 1687 FIX: Add visual to dashboard menu can now be closed with click anywhere on page
* 1709 FIX: Fix exception when a non-Ascii character is part of the variable part of a view title
* 1691 FIX: Fixed problem when watching BI aggregations with umlauts in titles or group name
WATO:
* 1170 Added buttons to move rules to top/bottom of the list to ruleset edit dialog
* 1489 Added iCalendar import for generating timeperiods e.g. for holidays...
* 1495 Most WATO tables can now be sorted (where useful)...
* 1504 WATO makes host tag and group information available for NagVis...
* 1535 Disabled services on service discovery page now link to the ruleset
* 1587 SEC: Prevent logging of passwords during initial distributed site login...
* 1560 Put host and service groups into one WATO menu item...
* 1561 Remove Auditlog from the main WATO menu and put it into the activate Changes page
* 1562 Move manual checks into a new WATO module...
* 1697 Allow non-Ascii characters in topic of host tag groups
* 1707 WATO rule editor: show title of tag group when rendering the conditions of a rule...
* 1689 Creating WATO backends for each configured site now...
* 1690 Pending changes can now be discarded...
* 1693 Added search form to global settings page...
* 1717 Split up LDAP configuration dialog into four boxes...
* 1165 FIX: Fixed exception in service discovery of logwatch event console forwarding checks...
* 1490 FIX: Timperiod excludes can now even be configured when creating a timeperiod...
* 1491 FIX: Fixed bug in dynamic lists where removing an item was not always possible...
* 1492 FIX: Fixed too long URL bug when deleting a timeperiod right after creating one
* 1498 FIX: Fixed displaying of global settings titles / help texts...
* 1502 FIX: Fixed removing elements from ListOf choices during complain phase
* 1505 FIX: Snapshots are now bound to the used monitoring core...
* 1540 FIX: Host diagnose page: Some tests were failing randomly
* 1541 FIX: Fixed missing form fields for notification method when editing rbn default rule
* 1542 FIX: Changed text of "debug_log" option to be clearer in distributed setups...
* 1546 FIX: Fixed adding cluster nodes to new cluster in complain phase...
* 1556 FIX: WATO inventory ignores already inventorized checks which does not exist anymore...
* 1576 FIX: SNMP Community host attribute is now visible for IE<=8...
* 1588 FIX: Renamed SNMP communities rule to SNMP credentials
* 1589 FIX: Restructured SNMP credentials rule specification...
* 1620 FIX: Fixed exception during host renaming when host has no perfdata
* 1625 FIX: Safely handle characters that have a special meaning in regexes when creating service-specific rules...
* 1637 FIX: Fixed exception in notification analysis when notifications have not NOTIFICATIONTYPE set
* 1639 FIX: Interfaces with speed more than 10GBit/s can now be configured correctly
* 1633 FIX: Fix problem that attributes of new WATO folders have not been saved...
* 1634 FIX: Fix editing of cluster hosts in WATO: cluster-property no longer goes lost...
* 1686 FIX: Host renaming also updates explicit negated hosts in rules
Notifications:
* 1512 Bulk notification can now be grouped according to custom macro values...
* 1650 Enabled rule based notifications by default (for new installations)...
* 1749 Allow title of notifiation script to be in third line if second line is encoding: utf-8...
* 1660 notification plugin spectrum: now configurable via flexible notifications
* 1168 FIX: HTML mails can now be configured to display graphs among each other...
* 1514 FIX: Try harder to detect previous hard state in notification when using Nagios as core...
* 1582 FIX: Fixed missing graphs in mails when sending notifications to non-contacts...
* 1583 FIX: Can use contact groups without hosts/services assigned in RBN rules now...
* 1606 FIX: Moved notify.log to var/log/notify.log in OMD environments...
* 1570 FIX: Fix notification of check_http active checks with Nagios core...
* 1704 FIX: Fix notification analyser in case there are non-Ascii characters in the notification context
BI:
* 1435 FIX: Saving BI aggregations: No longer reports 'Request-URI Too Large'...
* 1559 FIX: Fix link from BI icon to BI views (aggregations affected by this host/service)
* 1692 FIX: Aggregations with umlauts in title/topic can now be displayed in BI/Availability
Reporting & Availability:
* 1720 FIX: Remove bogus column H.Down if "Consider times where the host is down" is switch off...
Event Console:
* 1169 Added host state type filter to "recent event history" view
* 1718 Show groups of regex match of events in details views of Event Console
* 1719 Allow to allow both host name and IP address when checking for events in Event Console...
* 1531 FIX: Fixed exception in event history view when displaying CHANGESTATE events
* 1610 FIX: Hostname translation now also works for incoming SNMP traps
* 1643 FIX: Improved error handling of exceptions when processing log lines
* 1644 FIX: Fixed matching dynamic number of regex match groups...
* 1698 FIX: Fix specifying explicit path to unix socket for check_mkeventd
Livestatus:
* 1613 FIX: Fixed invalid json format in Stats query with requested heaeders...
HW/SW-Inventory:
* 1479 liveproxyd: new function for collecting remote inventory data...
NOTE: Please refer to the migration notes!
* 1452 Solaris HW/SW-Inventory added...
* 1547 FIX: win_cpuinfo: fix case where NumberOfCores is missing (Windows 2003)...
* 1552 FIX: mk_inventory.ps1: fix garbled or missing entries by removing bogus binary zeroes...
* 1752 FIX: win_exefiles: handle case gracefully where no size information is available
* 1753 FIX: win_bios: handle case with colons in BIOS version
inventory:
* 1516 FIX: win_disks: fix exception in case of empty signature
1.2.5i6:
Core & Setup:
* 1008 Overall check timeout for Check_MK checks now defaults to CRIT state...
* 1373 SEC: Do not ouput complete command line when datasource programs fail...
* 1425 New section header option "encoding" for agent output...
* 1129 FIX: Windows MSI-Installer: some systems created corrupted check_mk_agent.msi files...
* 1426 FIX: windows agent: logwatch: no longer reports incorrect formatted texts (japanese characters)...
* 1429 FIX: Disabled snmp checktypes are now sorted out before Check_MK contacts the snmp host...
Checks & Agents:
* 0185 knuerr_rms_humidity, knuerr_rms_temp: Two new Checks to Monitor the Temperature and the Humidity on Knürr RMS Devices
* 1065 heartbeat_crm / heartbeat_crm.resources: Rewrote checks / formalized parameters...
* 1068 livedump: Added optional check interval (detect staleness) / option to encrypt mails...
* 1093 windows agent: performance counter can now be specified by name...
* 0189 docsis_channels: Support for Frequency of Downstream Channels for Devices with DOCSIS MIB
* 0190 docsis_channels_upstream: New check for monitoring upstream channels on cable modems with DOCSIS MIB
* 0193 docsis_cm_status: New Check Status Check for Cable Modems with Docsis MIB.
* 1070 printer_input/printer_output: New checks to monitor input/output sub-units of printers...
* 0196 esx_vsphere_hostsystem: New subcheck for maintenance mode...
* 0197 check_uniserv: New Check for Uniserv Data Management Services...
* 0199 veeam_client: Check rewritten to get a nicer output
* 0200 arris_cmts_cpu,arris_cmts_temp: New Checks for Arris CMTS Devices ( Temperature and CPU Utilization)
* 0202 cisco_temp_sensor: It is now possible to configure this check in WATO....
* 1172 New check sap.value_groups...
* 1173 cisco_secure: Check creates now a summary instead one service by port...
NOTE: Please refer to the migration notes!
* 1174 rms200_temp: New Temperature check for RMS200 Devices
* 1175 dell_idrac_disks: New Check for Harddisks using Dell iDrac
* 0644 adva_fsp_if: instead of lower warning and critical levels check now supports lower and upper levels
NOTE: Please refer to the migration notes!
* 1006 printer_pages: add Perf-O-Meter and PNP template
* 0646 brocade_fcport: the administrative states for which ports are inventorized can now be configured in WATO
* 1010 chrony: new check for NTP synchronization via chrony on Linux...
* 1011 ibm_svc_systemstats.disk_latency: introduce levels for alerting...
* 1372 cisco_vss: new check for monitoring state of Cisco Virtual Switches
* 0648 brocade_fcport: new speed calculation of isl_ports...
* 0649 f5_bigip_pool: check now also prints the node names of down nodes
* 1374 arc_raid_status: moved plugin into main Linux agent...
NOTE: Please refer to the migration notes!
* 1375 vxvm_enclosures, vxvm_multipath, vxvm_objstatus: joined into one agent plugin called vxvm...
* 1376 dmraid: moved plugin code into normal Linux agent...
* 1377 Renamed agent plugin resolve_hostname into dnsclient, make portable to all Unices...
* 1146 nfsmounts: supported by AIX agent now...
* 1103 windows agent: now able to omit context text of logfiles...
* 1150 netstat: new check for monitoring TCP/UDP connections and Linux and AIX...
* 0654 oracle_instance: now also monitors the log mode
* 1176 winperf_msx_queues: The list of counters for inventory can now be configured host based using wato
* 0656 brocade_fcport: inventory rule can now choose upon physical und operations states as well, state choices were also updated
* 1177 Hivemanger: New agent to check hivemanager devices
* 1383 oracle_asm_diskgroup: Account for offline disks and required mirror free space...
NOTE: Please refer to the migration notes!
* 1178 arris_cmts_mem: New check for Memory usage on arris cmts modules.
* 1179 bluecat_dhcp: New Check for DHCP Service on bluecat adonis devices.
* 1180 bluecat_dns, bluecat_dns_queries: New DNS Checks for Bluecat Adonis.
* 1181 bluecat_ntp: New Check for NTP on bluecat adonis or proteus devices
* 1105 wmic_if.ps1: Powershell version of the wmic_if.bat script...
* 1182 bluecat_ha: New Check for HA Status on Bluecat Adonis devices
* 1183 bluecat_commandserver: New Check for bluecat adonis devices
* 1397 juniper_screenos_cpu, juniper_screenos_fan, juniper_screenos_mem, juniper_screenos_temp, juniper_screenos_vpn: new checks for Juniper ScreenOS Firewalls
* 1106 mk_inventory.ps1: now uses the MK_CONFDIR environment variable from the agent (if available)...
* 1107 windows agent: now sets additional environment variables...
* 1108 printer_io.include: included tray description in check output
* 0657 diskstat: cluster support added for single disk modes
* 1111 vCenter monitoring: greatly improved performance (at least 40 times faster)...
* 1112 esx_vsphere_hostsystem.mem_usage_cluster: allows to monitor total RAM usage of all nodes in a cluster...
* 0658 brocade_info: new check to retrieve informational data about Brocade switches
* 1385 oracle_instance: new WATO rules for archivelog, logging, login and uptime...
* 1403 kernel.util: allow levels for the total CPU utilization...
NOTE: Please refer to the migration notes!
* 1117 agent_vsphere: now able to query license information from esx system...
* 1118 bluecat_dns, bluecat_dhcp: no able to run as clustered checks...
* 1409 Extended Check_MK-API: check function may return None...
* 0659 domino_tasks: new check to monitor tasks on a lotus domino server via snmp
* 1187 Hivemanager: Extended Check and Agent...
* 1130 esx monitoring: agent_vsphere now retrieves additional data (used by HW-inventory)...
* 1422 agent_vsphere: now able to configure where the power state of a vm or esx-host should be assigned...
* 1442 ups_socomec_out_source: New check for checking the power source of out phases for Socomec UPSs
* 0662 domino_mailqueues: new check to monitor mail queues in Lotus Domino
* 1188 veeam_client: Check now also outputs ReadSize and TransferedSize...
* 0663 domino_info: new check to extract informational data about a Lotus Domino Server
* 0664 domino_users: new check to monitor the number of users on a Domino Notes server
* 1447 domino_transactions: new check to monitor the number of transactions per minute on Lotus Domino servers
* 1190 statgrab_cpu: Check can now handle parameters
* 1191 Linux agent now also sends information about tmpfs...
* 1193 ps: Manual Checks can now use RegEx for user matching...
* 1194 Linux Agent now supports monitoring of cifs mounts
* 1195 AIX Agent now also supports monitoring of cifs mounts
* 1196 apache_status: Added timeout...
* 1443 ups_socomec_outphase: New check for monitoring the out phases of Socomec UPSs
* 1051 FIX: tcp_conn_stats: fix missing performance data...
* 1142 FIX: winperf_ts_sessions: fix computation, check has never really worked
* 1090 FIX: zfsget: fixed exception which happened on incomplete zfs entries
* 0187 FIX: hp_proliant_power: Fixed Wato configuration
* 0192 FIX: oracle_rman_backups: Not longer try to make a inventory for broken plugin outputs
* 0194 FIX: raritan_pdu_inlet: Check now outputs the correct values...
NOTE: Please refer to the migration notes!
* 1071 FIX: oracle_rman_backups: Only inventorize ARCHIVELOG / DB FULL / DB INCR entries...
* 1152 FIX: mk-job: The check now captures currently running jobs and their start time...
* 0198 FIX: cisco_temp_sensor: Removed dicey detection for temperature value....
* 0645 FIX: brocade_fcport: since in newer firmware (7.*) swFCPortSpeed is deprecated, we then calculate port speed from IF-MIB::ifHighSpeed
* 1097 FIX: windows_agent: preventing missing agent sections on first query...
* 1009 FIX: df: deal with space in file system type for PlayStation file system...
* 1098 FIX: esx_vsphere_counters.diskio: Now reports unknown when counter data is missing
* 1143 FIX: dell_powerconnect_temp: fix configuration via WATO...
* 1144 FIX: blade_bx_temp, dell_chassis_temp, emerson_temp, ibm_svc_enclosurestats, ups_bat_temp: rename service description...
NOTE: Please refer to the migration notes!
* 1145 FIX: windows_tasks: handle case correctly where task is currently running...
* 1378 FIX: mk_logwatch: remove exceeding \n when rewriting message and using \0...
* 1147 FIX: upc_capacity, ups_socomec_capacity: Fix checking of battery left levels...
* 1099 FIX: tsm_scratch: now returns the variable name instead the values during inventory...
* 0650 FIX: f5_bigip_pool: limits to the number of active nodes are now correctly applied...
NOTE: Please refer to the migration notes!
* 1102 FIX: esx_vsphere_counters: no longer raise false alarms because of invalid data from ESX Host...
* 1149 FIX: check_mk-ibm_svc_systemstats.diskio, check_mk-ibm_svc_systemstats.iops: fix exception in Perf-O-Meter
* 0651 FIX: f5_bigip_interfaces: Fix invalid throughput values, detect newer F5 devices...
* 1393 FIX: casa_cpu_temp, casa_cpu_util: Change service description to standard...
NOTE: Please refer to the migration notes!
* 1104 FIX: winperf_if: Improved matching of data from wmic_if.bat / wmic_if.ps1 scripts...
* 1110 FIX: windows agent: fixed missing agent section problem if a cached script ran into a timeout...
* 1113 FIX: oracle_rman: fixed exception when backup was currently running
* 1114 FIX: bluecat_threads: no longer detected on wrong systems...
* 1116 FIX: megaraid_ldisk: now longer raises an exception for adapters with 'No Virtual Drive Configured'
* 1122 FIX: windows agent: unicode logfile monitoring: now able to detect incomplete written lines...
* 1184 FIX: cisco_power: Fixed detection of item. In some cases the status information was part of the item...
NOTE: Please refer to the migration notes!
* 1078 FIX: Fix compensation for daylight safing time in prediction
* 1126 FIX: bluecat_ntp: check no longer crashes on evaluating sysLeap values higher than 1...
* 1127 FIX: bluecat_dhcp: fixed exception when data was available.. returns UNKNOWN when data is missing
* 1128 FIX: bluecat_dns: now reports UNKNOWN if no snmp data is available
* 1131 FIX: esx_vsphere_hostsystem.maintenance: fixed misspelling in service description...
NOTE: Please refer to the migration notes!
* 1161 FIX: fc_port: Fixed invalid values of counters, fixed wrong values in graphs...
* 1192 FIX: veeam_jobs: Check now recognize sync jobs...
* 1386 FIX: oracle_jobs: Bugfix for forever running jobs...
* 1427 FIX: esx_vsphere_hostsystem.multipath: no longer crashes at invalid multipath types...
Multisite:
* 1066 New Dashboard Designer...
* 1392 WATO Folder filter: show only the paths a user is allowed to see
* 1398 Allow to spread times of next check when rescheduling...
* 1405 Checkbox for settings downtimes on the hosts of the selected services...
* 1410 Output log text of scheduled downtime log entries...
* 1411 New builting views for the history of scheduled downtimes
* 1185 mobile ui: Added a new view to see events from the Event Console
* 1412 Speed up of displaying and sorting after WATO folder path
* 1477 New screenshot mode for Multisite...
* 1067 FIX: Fixed login problem in LDAP connector when no user filter specified...
* 1094 FIX: sidebar snaping 'Tree of folders': fixed exception
* 1154 FIX: Availability: Fixed unwanted redirect to edit annotation page after editing availability options...
* 1401 FIX: Display options in views are now again persistent...
* 1120 FIX: Multisite filters Host/Service Contactgroup: Fixed livestatus exception...
* 1158 FIX: Moved filter logic to visuals module...
NOTE: Please refer to the migration notes!
* 1077 FIX: Fixed labelling of Y achsis in prediction graphs...
* 1162 FIX: User profiles can not be edited on WATO remote sites anymore...
WATO:
* 1096 New WATO web service: manage hosts via a new HTTP API...
* 1155 NagVis map edit/view permissions can now be set using roles/groups...
* 1115 Renamed rule: Hosts using SNMP v2c -> Legacy SNMP devices using SNMP v2c...
* 1404 Make title/help of custom user attributes localizable...
* 1159 Remote BI Aggregations can now be configured to be checked as single services...
* 1163 Service discovery: Added direct link to check parameter ruleset of services...
* 1428 Web-API: now able to add cluster hosts...
* 1064 FIX: Fixed rare issue with WATO communication in distributed setups (different OS versions)...
* 1089 FIX: Snapshot restore: fixed exception during exception handling......
* 1091 FIX: logwatch patterns: allow unicode text in pattern comment
* 1092 FIX: logwatch: now able to enter unicode text into the "Pattern (Regex)" field
* 0191 FIX: Added swp files to the ignore list for the WATO git feature...
* 1153 FIX: Changed custom user attributes can now be used immediately...
* 0201 FIX: Fixed error message in Rulelist of RBN...
* 1100 FIX: WATO backup domains: fixed bug were excluded files still got deleted on snapshot restore...
* 1101 FIX: WATO check parameter: renamed 'Nominal Voltages' to 'Voltage Levels..'
* 1396 FIX: Fix default setting of Enable sounds in views...
* 1109 FIX: WATO active checks: passwords no longer shown as plain text....
* 1119 FIX: WATO create rule: No longer raises an incorrect permission warning when creating a new rule...
* 1121 FIX: Rule based notifications formular: No longer raises Request-Uri-Too-Large errors...
* 1160 FIX: Fixed wrong named column in mkeventd rules
* 1430 FIX: Clone group: Now displays correct alias name of cloned group...
Notifications:
* 1151 Add variables (HOST/SERVICE)ACK(AUTHOR/COMMENT) to notification context...
* 1394 HTML notifications have a new content field for debugging variables...
* 1400 Added example notification script for Pushover to doc/treasures/notifications...
* 1123 Rule based notifications: New condition "Match Service Groups"
* 1186 RBN: It's now possible to Filter for contactgroups...
* 1189 sms notification: also send information about Downtimes, Acknowledgments and Fallping now
* 1424 mknotifyd: now able to check if its still listening for telegrams...
* 1156 FIX: Graphs in HTML mails are now sent again where they where missing...
* 1157 FIX: Fixed SMS plugin on at least debian (distrs which have no sendsms/smssend)...
* 1407 FIX: Fix exception in rule based notification on non-Ascii characters in log message
* 1408 FIX: mknotifyd now really reads all configuration files below mknotifyd.d...
BI:
* 1406 Assume PEND in count_ok aggregations if all nodes are PEND...
Event Console:
* 1148 Allow execution of actions when cancelling events...
* 1395 Event Console can now create notifications via Check_MK RBN...
* 1007 FIX: check_mkevents: fix case where events contain binary zeroes
* 1399 FIX: Fix left-over tac processes when showing Event Console history...
* 1402 FIX: Fixed cased where counting events did not reach required count...
* 1124 FIX: WATO EC configuration: no longer raises an exception when user has restricted WATO access...
* 1125 FIX: EC actions are now saved when an EC rule has "Send monitoring notification" set...
HW/SW-Inventory:
* 0643 windows inventory: OS now contains the install date, reg_uninstall now contains the path...
NOTE: Please refer to the migration notes!
* 0652 windows software inventory gives some more details about OS and installed software...
NOTE: Please refer to the migration notes!
* 0653 script to extract HW/SW-Inventory data in CSV format...
* 0660 mk_inventory-ps1: new uses the Install Location as path for win_reg_uninstall
* 0661 HW/SW-Inventory: install date of software packages no longer in unix timestamps but date format...