-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
8606 lines (8057 loc) · 539 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.4.0i2:
Core & Setup:
* 3648 FIX: Fixed log file parsing of host states...
* 3965 FIX: Nagios: Improved handling of broken core config...
Checks & Agents:
* 3841 cups_queues: thresholds are now configurable in WATO...
* 3910 oracle_instance: noarchivelog can now be ignored
* 3911 if.include: each operational state can now be mapped to a check state
* 3912 elphase.include: now device states can be mapped to monitoring states
* 3913 gude_powerbanks, gude_relayport, gude_temp, gude_humidity: new checks for Gude Power Control devices
* 3954 postfix_mailq_status: new check which monitors the status of postfix mail instances
* 3945 fortigate_node: Memory on fortigate clusters are now configurable by WATO...
* 3956 fileinfo.groups: now allows regular expressions within include and exclude patterns each beginning with a tilde
* 3947 mssql_blocked_sessions: thresholds for wait time can be set now...
* 3830 netapp_api_luns: new check to monitor the filesystem usage of LUNs
* 3949 ucd_cpu_load: Genugate devices are now displaying CPU load...
* 3950 openbsd_sensors: Genugate devices are now handling hardware sensors...
* 3894 FIX: mkeventd_status: Fixed bug in case Event Console is not running
* 3907 FIX: oracle_tablespaces: simplyfied free space calculation depending on version...
* 3819 FIX: windows agent: fixed 2 bugs related to mrpe...
* 3909 FIX: postfix_mailq: fixed readout postfix config
* 3748 FIX: vertias_vcs: Fix empty agent section for standard xinetd configuration...
* 3935 FIX: FIX avaya_45xx_cpu: check got UNKNOWN using Nagios core
* 3896 FIX: Agent RPMs: Fixing dependency issue with old check_mk-agent-oracle-*.rpm and check_mk-agent-logwatch-*.rpm
* 3936 FIX: chrony: support new params dictionary and rule "State of NTP time synchronisation"
* 3649 FIX: Added a workaround for an escaping-related bug in old bash versions...
* 3958 FIX: netapp_qtree_quota: fixed graph scaling
* 3823 FIX: The windows agent were unable to execute powershell, python and pearl scripts
* 3937 FIX: check_mk_agent.aix: fixed hadling of mailq command
* 3824 FIX: netapp_api_snapvault: fixed duplicate service when item name contains a $ character...
* 3825 FIX: local check: no longer cuts away any trailing "9" digits in P mode
* 3964 FIX: df_zos: Fixed not working filesystemcheck for IBM z/OS...
* 3826 FIX: netapp_api_connection: now removes duplicate warning messages
* 3827 FIX: windows agent: fixed 3 bugs which broke the skype section
* 3650 FIX: Fixed bash versionitis, unbreaking cached check results....
* 3960 FIX: if.include: fixed wrong order if interface groups are configured
* 3828 FIX: agent_netapp: improved error reporting. fixed exception when snapmirror-get-status returns no values
* 3966 FIX: apc_symmetra raritan_emx: Fixed wrong include "temperature.includes"...
* 3829 FIX: Skype for Business checks: refactored most of the checks...
* 3961 FIX: fixed error sections handling if parse function is available
Multisite:
* 3959 Two new filters for the comment view: author and comment text field
* 3970 SEC: Fixed possible URL injection on index page...
* 3897 FIX: Fixed possible exception in raw edition when rendering graphs
* 3898 FIX: Unmonitored services: Fixed possible bug in case discovery service produces unexpected output
* 3902 FIX: Graph search view: Changing painter options made page empty
* 3969 FIX: CentOS 5.5: Fixed incompatibility with the available OpenSSL 0.98...
WATO:
* 3915 User access times: New icon when never logged in; New column "last seen"
* 3901 Logfile pattern analyser: pattern lists can now be searched
* 3914 FIX: Roles: Aliases are now unique during cloning
* 3820 FIX: Network scan: no longer fails completely if hostname already exists in configuration...
* 3821 FIX: WATO Network Scan: Fixed risk of loosing site tags when performing a network scan...
Notifications:
* 3957 mail: now allows extra HTML section between body and table
* 3900 FIX: Notification analysis: Fixed wrong color for host notification states
* 3968 FIX: Notifications / Alert handling: Fixed configuring nth notifications without state changes...
BI:
* 3955 BI rule ID can now be renamed
Livestatus:
* 3740 Moved livedump utility from treasures directly into bin directory...
HW/SW-Inventory:
* 3906 oracle: now version, database creation and startup time, log and open mode, logins, flashback are inventorised
* 3944 Added OS related information for Cisco, Fireeye and Infoblox devices...
* 3908 winperf_if, lnx_if: new inventory plugins for switch port statistics of linux and windows hosts
* 3946 uptime: added the uptime to inventory...
1.4.0i1:
Core & Setup:
* 3342 MKP: local/lib and local/bin of sites can now be packed...
* 3114 linux and windows agent can now be configured to directly encrypt their output. For real-time updates encryption is now optional (but active per default)...
* 3531 Reduced Check_MK helper size for certain dists/python versions...
* 3580 The macro $HOSTNAME$ is now available for host checks which are based on service states
* 3155 implemented dual monitoring for systems with management boards (like HP iLO)
* 3721 Host macros are now replaced in datasource program command lines...
* 3853 cmk --list-tag can now also list offline hosts
* 3806 Sped up "Activate changes"...
* 3193 FIX: Fixed fake check results for hosts...
* 3214 FIX: Removing SNMP checks for non SNMP hosts and agent based checks for non agent hosts...
* 3220 FIX: Check_MK HW/SW Inventory is now always disabled for "No Agent" hosts
* 3221 FIX: Fixed broken nagios config because of missing contact group check-mk-notify with rule based notifications enabled...
* 3234 FIX: Make unixcat more robust...
* 3275 FIX: Piggyback based services were skipped on "No agent hosts"...
* 3286 FIX: Fixing possible logging issues when using datasource programs for monitoring...
* 3008 FIX: Fixed exception in logwatch config generation when using Nagios...
* 3105 FIX: fixed crash in cmk --dump for services containing non-ascii characters
* 3343 FIX: MKP: Verifying minimal version of packages during installation...
* 3349 FIX: Added rule to disable Inline-SNMP per host...
* 3123 FIX: fix for temperature services discovered pre-1.2.8 that caused errors on writing configuration
* 3385 FIX: Fixed not updated discovery service after grouped auto discovery...
* 3416 FIX: Avoid warning in cmc.log when rescheduling non-existing discovery check...
* 3437 FIX: Improved performance of "activate changes", especially in distributed environments
* 3471 FIX: Repair ignoring discovery errors when bogus %s is contained in service description...
* 3616 FIX: Fix cmk -I ignoring the option --cache...
* 3617 FIX: cmk -I without host specification now (again) always uses cache files...
* 3149 FIX: fixed rare crash if alert handling tried to long non-latin characters
* 3843 FIX: Fixed reporting of crashes when using Nagios core
* 3846 FIX: Nagios: define_contactgroups = False is handled correctly again
* 3852 FIX: Host related files are now deleted during host deletion...
* 3737 FIX: Fixed slow activation of changes due to loss of IP address cache...
* 3893 FIX: Predictive levels: Improved handling of broken prediction files (empty files)...
Checks & Agents:
* 3183 aruba_wlc_aps: new check which monitors the provisioned accesspoints of an Aruba Network WLAN Controller
* 3184 varnish, varnish.backend, varnish.backend_success_ratio, varnish.cache, varnish.cache_hit_ratio, varnish.client, varnish.esi, varnish.fetch, varnish.objects, varnish.worker, varnish.worker_thread_ratio: new checks which monitor HTTP Accelerator Statistics via varnishstat on Linux
* 2994 brocade.temp: increased temperature default levels from 35/40 to 55/60
* 3078 mssql_transactionlogs: new check to monitor the size of mssql transaction logs
* 2995 esx_vsphere_licenses: now compatible with esx 6.0...
* 2996 websphere_mq_queues: now able to configure levels for used percentage of total queues
* 3190 entity_sensors, entity_sensors.fan: new checks monitoring temperature and fan sensors of devices such as Palo Alto Networks which support the ENTITY-SENSORS-MIB
* 3081 mk_jolokia: plugin now supports setting custom CAs for verifying server certificate as well as sending a client certificate...
* 3191 cisco_redundancy: new check which monitors the status of the redundant unit of Cisco devices supporting the CISCO-RF-MIB
* 3083 mk_jolokia: The plugin can now be configured with a service url to treat the jolokia server as a jmx proxy
* 3085 fortigate_signatures: new check to monitor av and ips signatures on fortigate firewalls...
* 3257 dell_idrac_virtdisks: new check which monitors the virtual disks of a Dell IDrac Device
* 3001 fileinfo: now able to configure the checks status if the file is missing
* 3088 rstcli, rstcli.pdisks: new checks to monitor Intel RST raids
* 3093 isc_dhcpd: now interprets include statements when parsing the configuration file
* 3004 agent_vsphere: now able to configure used piggyback name for virtualmachines...
* 3095 prism_info, prism_containers, prism_alerts: added checks to monitor a Nutanix Prism cluster
* 3096 check_mailboxes: new active check to monitor age and count of mails in imap mailboxes
* 3101 zpool: new check to monitor usage of zfs pools...
* 3103 brocade_optical: new check to monitor signal strength of optical network ports on Brocade switches
* 3303 cisco_fru_module_status: new check which monitors the operational status of FRU modules of Cisco devices which support the CISCO-ENTITY-FRU-CONTROL-MIB
* 3012 jolokia_metrics.threads: Improved check output, now showing the actual problem and levels
* 3272 oracle_tablespaces: severity of check for autoextension is now configurable...
* 3292 livestatus_status: Added Microcore relevant metrics like helper usage and latency...
* 3334 blade_bays: Added checks for power consumption
* 3106 windows agent: added support for new eventlog types introduced with windows vista / server 2008...
* 3308 pvecm_status, pvecm_nodes: new checks which monitor a Proxmox Virtual Environment cluster setup
* 3108 network interface and switch port discovery rules can now be combined to dicover multiple sets of interfaces...
NOTE: Please refer to the migration notes!
* 3109 dotnet_clrmemory: levels are now configurable
* 3311 apc_netbotz_sensors, apc_netbotz_sensors.dewpoint, apc_netbotz_sensors.humidity, apc_netbotz_other_sensors: new checks for APC Netbotz devices which support the NETBOTZV2 MIB
* 3115 logwatch: made check cluster-able...
* 3312 check_ssh: service description can be set
* 3119 mssql: fixed counter calculation when caching plugin output...
* 3120 mssql_datafiles, mssql_transactionlogs: new chech to also monitor the datafiles and added option to summarize datafiles and transactionlogs
* 3121 mssql_counters.page_activity, mssql_counters.locks_per_batch: additional checks for mssql performance counters
* 3403 fireeye_content, fireeye_fans, fireeye_powersupplies, fireeye_raid, fireeye_raid.disks, fireeye_sys_image, fireeye_sys_status, fireeye_temp: new checks for Fireeye Appliances which support the FE-FIREEYE-MIB
* 3404 fireeye_sys_status: new inventory plugin which gives information about serial number and model of Fireeye Appliances which support the FE-FIREEYE-MIB
* 3405 cisco_fantray, cisco_fru_power: now these checks have readable item names
NOTE: Please refer to the migration notes!
* 3407 cisco_mem_asa64: new check which monitors the used memory of Cisco Adaptive Security Appliances...
NOTE: Please refer to the migration notes!
* 3027 mtr (Matt's traceroute): New agent plugin...
* 3410 ipmi: now monitors compact/discrete sensors...
* 3412 stulz_temp: now has readable sensor names and discovers all possible sensors which are connected
NOTE: Please refer to the migration notes!
* 3414 New declarator BINARY(...) for OIDs - returning a list of byte values...
* 3423 papouch_th2e_sensors, papouch_th2e_sensors.dewpoint, papouch_th2e_sensors.humidity: new checks which monitor the temperature, dew point and humidity sensors of Papouch TH2E devices
* 3473 fileinfo.groups: the include patterns now also support the pattern YESTERDAY, in addition to DATE...
* 3428 bluenet2_powerrail, bluenet2_powerrail.rcm, bluenet2_powerrail.temp, bluenet2_powerrail.humidity: new checks for Bachmann Bluenet2 Powerrails which support the BACHMANN-bluenet2-MIB
* 3524 fileinfo, fileinfo.groups: both checks are now cluster ready...
* 3445 mssql_versions: With up-to-date agent plugin it is now writing out the used edition
* 3446 mssql_version: Outputs info about cluster state and cluster name
* 3128 mem.win: graphs now display the available memory
* 3431 netextreme_cpu_util: new check which monitors the CPU utilization of a Extreme Networks Switch which supports the EXTREME-MIB
* 3432 oracle_tablespaces: now autoextend can be ignored
* 3132 skype, skype.data_proxy, skype.edge, skype.edge_auth, skype.mcu, skype.mediation_server, skype.mobile, skype.sip_stack: added new checks to monitor a Skype For Business installation
* 3133 windows agent: support for rotated log files and for reading new files from the first line...
* 3533 rds_licenses: Monitors used remote desktop licenses...
* 3606 saprouter_cert: new check which monitors the age of validity of a SAP router certificate...
* 3135 skype, skype.xmpp_proxy, skype.conferencing, skype.sip_stack: added furter metrics and adjusted default levels
* 3609 apc_rackpdu_power: now upper levels for electrical current are confiugurable
* 3136 windows agent: improved crash reporting...
* 3137 linux and solaris agent: mrpe checks now support option to append the cache age to cached results...
* 3610 mk_oracle: linux plugin now available for solaris
* 3611 websphere_mq_queues: now age and state of messages not processed is configurable...
* 3612 nfsmounts: new rule for en/disabling performance data
* 3615 if: Convert bandwidth from octets into bits for graph display...
NOTE: Please refer to the migration notes!
* 3138 jolokia_metrics.cache_hits, jolokia_metrics.in_memory, jolokia_metrics.off_heap, jolokia_metrics.on_disk, jolokia_metrics.writer: added checks for monitoring of ehcache metrics through jolokia...
* 3628 emcvnx_mirrorview: new check which monitors the mirrorviews of EMC VNX storage system...
* 3629 gude_relayport: new check which monitors the ON/OFF state of a GUDE Power Control device
* 3631 cisco_fru_powerusage: new check which monitors the current and power of Cisco Core Switches which support the CISCO-ENTITY-FRU-CONTROL MIB
* 3632 oracle_performance: new check which displays some statistics of ORACLE DBs...
* 3634 check_sql: upload/content field for longer queries is now available
* 3621 Automatically create /var/lib/check_mk_agent/spool in prebuilt agent packages
* 3543 mk_inotify: new plugin to monitor file system operations (linux)...
* 3639 intel_true_scale_chassis_temp, intel_true_scale_fans, intel_true_scale_psus, intel_true_scale_sensors_temp: new checks for Intel True Fabric Scale Switches
* 3683 infoblox_dhcp_stats, infoblox_dns_stats, infoblox_grid_status, infoblox_node_services, infoblox_replication_status, infoblox_services, infoblox_temp: new checks for Infoblox devices which monitor DHCP and DNS statistics, grid and replication status, services and node services and temperature of the system or CPUs
* 2240 check_mk_agent.openwrt: New agent for OpenWRT based systems...
* 3684 infoblox_systeminfo: new inventory plugin for Infoblox devices which support the IB-PLATFORMONE MIB
* 3688 perle_chassis, perle_chassis.temp, perle_chassis_slots, perle_modules_cm1000, perle_modules_cm1110, perle_modules_mgt, perle_psmu, perle_psmu.fan: new checks for Perle Mediaconverter devices which support the PERLE-MCR-MGT MIB
* 3689 brocade_fcport: now monitors BBcredit zero stats and the number of encoding error or disparity error inside frames received
* 3690 apache_status: upper levels for busy workers are now configurable
* 3691 oracle_jobs: status of missing jobs is now configurable
* 3554 Inotify: Added configurable levels for movedto, movefrom and move self
* 3706 hp_proliant_systeminfo, hp_proliant_mem, hp_proliant_da_phydrv: new inventory plugins
* 3671 mssql_backup: Is now aware of backup types and outputs ages per backup type
* 3558 check_mail: now able to process mail body with Content-Transfer-Encoding base64...
* 3695 f5_bigip_cluster_v11: Now WATO configurable...
NOTE: Please refer to the migration notes!
* 2241 check_mk_agent.openwrt: Added section for local scripts and plugins...
* 3697 sym_brightmail_queues: added support for newer symantec brightmail version
* 3725 mssql_instance: Changed MSSQL monitoring to report connection issues with only one service...
* 3732 esx_vsphere_hostsystem.mem_usage esx_vsphere_hostsystem.mem_usage_cluster: Providing mem_total as dedicated metric
* 3712 ispro_sensors_temp, ispro_sensors_humid, ispro_sensors_digital: new checks which monitor Interseptro Pro devices which support the ISPRO-MIB
* 3560 emcvnx_disks: now able to configure states for hard read/write errors and when enclosure rebuilds
* 3783 netapp_api_qtree_quota: new check to monitor disk usage of qtrees
* 3784 agent_netapp / 7mode: now also reports snapsvaults for the default filer...
* 3832 diskstat: added new device bcache
* 3775 fjdarye500_pfm: new check which monitors health status and lifetime of PCIe flash modules of Eternus DX500 storage systems
* 3776 check_mail_loop: now you can specify the subject text instead of default 'Check_MK-Mail-Loop'
* 2242 fortigate_sessions, fortigate_sessions_base: Allow configuration of levels for sessions
* 3842 juniper_cpu_util: Allow configuration of levels for routing engine
* 3777 ipmi: IPMI sensor states are configurable
* 3778 if: now levels for discards rate are configurable
* 3788 f5_big_pool: check is now cluster ready
* 3789 f5_bigip_snat: new check for source NAT monitoring
* 3790 f5_bigip_cluster_status: New check to monitor integrity of active/active and standby/active clusters
* 3791 f5_bigip_vserver: now reports lots of additional performance data...
NOTE: Please refer to the migration notes!
* 3743 SEC: mk_jolokia: Use JSON library to parse JSON output in lieu of eval()...
NOTE: Please refer to the migration notes!
* 3863 didactum_sensors_analog, didactum_sensors_analog.voltage, didactum_sensors_discrete: new checks which monitor the temperature, voltage and discrete sensors of Didactum devices which support the DIDACTUM-SYSTEM-MIB
* 3793 f5_bigip_vserver: traffic and packet levels are now configurable
* 3794 f5_bigip_snat: now able to configure levels
* 3795 cisco_cpu_multiitem: monitors the cpu utilization of each cpu
* 3834 hitachi_hus_dku, hitachi_hus_dkc: now recognises Hitachi G800/HM800 devices
* 3796 agent_vsphere: new option allows monitoring of ESX hostsystem and windows agent
* 3797 Check_MK Check helpers: Decreased memory consumption in distributed setups...
* 3865 oracle_sessions: now relative levels for sessions are configurable...
* 3647 check_http: Improved rendering of the extended performance data
* 3867 filter 'Servicegroup (Regex)' can be negated
* 3868 f5_bigip_cluster_status: node states are configurable for F5 BigIP devices since version 11.2
* 3869 ipmi: new discovery rule and cleanup...
NOTE: Please refer to the migration notes!
* 3744 synology_info: Now also displays OS version
* 3799 agent_netapp: No longer requires the files NaServer/NaElements. Reduced CPU usage by 2/3...
* 3872 mcafee_webgateway_info, mcafee_webgateway, mcafee_webgateway_misc: new checks which monitor some statistics of McAfee web gateway devices
* 3883 kentix_humidity, kentix_temp: Added support of MultiSensor-LAN and MultiSensor-RACK
* 3803 netapp_api_connection: reports any errors happened during the collection of data...
* 3859 check_mail_loop.vbs: New MRPE script to perform a mail loop check via Outlook MAPI...
* 3838 hitachi_hus_dku & hitachi_hus_dkc: more detailed output even if everything is in state OK...
* 3839 filehandler: added new plugin for monitoring file handles in linux...
* 3875 tsm_stagingpools: check is now cluster aware
* 3877 ibm_tl_changer_devices, ibm_tl_media_access_devices: new checks for IBM tape library which support the SNIA-SML-MIB.
* 3878 apc_symmetra: divided into several checks...
NOTE: Please refer to the migration notes!
* 3879 ipmi, ipmi_sensors: unified ipmi checks which now work the same way...
* 3747 epson_beamer_lamp: New check to monitor the lamp operation time of Epson beamers
* 3905 barracuda_mailqueues, nullmailer_mailq, postfix_mailq, qmail_stats: these checks now have items, postfix can now monitor multi directories (linux agent)...
NOTE: Please refer to the migration notes!
* 3817 logwatch patterns: now able to set a rule which converts on incoming state to another...
* 3073 FIX: windows agent: relative paths to mrpe scripts are now treated as relative to the agent installation directory...
* 3061 FIX: mk_jolokia: Fixed debugging of the agent plugin
* 3074 FIX: windows agent: fixed incorrect values for 32-bit performance counters
* 3075 FIX: windows agent: fixed data encryption of realtime updates were incompatible...
* 3205 FIX: raritan_pdu_inlet: Fixed exception in case phases report a non OK state
* 3206 FIX: esx_vsphere_hostsystem.mem_usage_cluster: Fixed broken check
* 3207 FIX: msexch_dag.copyqueue: Fixed broken check in case of non OK state
* 3209 FIX: esx_vsphere_datastores: Added missing uncommitted and overprovisioned graphs
* 3210 FIX: oracle_asm_diskgroup: Fixed exception when using required mirror free space parameter
* 3211 FIX: logwatch: Fixed broken error messages in case of failed filesystem operations
* 3212 FIX: cmciii.phase: Fixed totally broken check
* 3213 FIX: ibm_svc_disks netapp_api_disk: Fixed exception when disks are failed
* 3185 FIX: ucd_cpu_load: this service will be discovered although we prefer HOST-RESOURCES MIB
NOTE: Please refer to the migration notes!
* 3176 FIX: Fix invalid scaling of some obscure metrics by factor 100...
* 3177 FIX: mem.linux: added all missing metric definitions
* 3217 FIX: fortigate_sessions: Fixed exception in case of empty data provided by the device
* 3186 FIX: fortigate_node: fixed empty item
NOTE: Please refer to the migration notes!
* 2993 FIX: zfs_arc_cache: fixed crash, no longer reports unknown if not all data is available...
* 3188 FIX: ps.include: fixed typo
* 3226 FIX: isc_dhcpd: Fixed exception during discovery when pools can not be gathered by agent
* 3189 FIX: mem.vmalloc: newer kernel versions (64bit) report wrong data, i.d. both VmallocUsed and Chunk equal zero, thus this check is obsolete
* 3079 FIX: win_printers: fixed typo that kept default parameters from being used...
* 3080 FIX: windows_updates: non-ascii characters are now handled correctly
* 3227 FIX: Automatic service adding: Fixed exception when using time range to skip automatic configuration...
* 3178 FIX: docsis_channels_upstream: Fixed crash in graphs
* 3082 FIX: windows agent: with realtime updates active, shutting down the agent could take very long
* 2997 FIX: Fixed broken SNMP subchecks...
* 3243 FIX: Fix missing custom graphs in sidebar snapin Views if explicit topic is set
* 3245 FIX: Fix interpretation of check levels 0.0 as "no levels"...
* 3250 FIX: cisco_mem: remove bogus memory check for "Driver text"...
* 3084 FIX: windows agent: fixed crash when specifying an invalid performance counter
* 3252 FIX: ntp.time: better handling of temporary synchronization loss...
* 3254 FIX: haproxy: fixed wrong type handling
* 3255 FIX: apc_inrow_temp: fixed wrong discovery handling of available sensors
* 3256 FIX: blade_bx_powerfan: fixed wrong levels handling and minor cleanup
* 3258 FIX: dell_idrac_disks: fixed disk and component status handling
* 3087 FIX: fixed very rare crash in active checks...
* 3266 FIX: check_smtp: when set to IPv6 it used the IPv4 address nevertheless
* 3274 FIX: ibm_svc_disks: Fixed wrong listing of man page
* 3089 FIX: cmciii.temp: added handling for more device states
* 3276 FIX: esx_vsphere_vm.snapshot: Graphs now scale the age of the scnapshots correctly
* 3277 FIX: veeam_jobs: Handling missing state "Postprocessing" now
* 3278 FIX: fritz_wan_if: Fixed incorrect unit Bit used in check
* 3092 FIX: isc_dhcpd: fixed incorrect handling of timezones
* 3259 FIX: ad_replication: fixed wrong timestamp handling
* 3094 FIX: cisco_temperature: fixed duplicated sensors on some devices...
* 3006 FIX: agent_vsphere: fixed exception when providing the wrong login credentials
* 3261 FIX: cisco_temperature: fixed wrong datatype handling
* 3007 FIX: Interface groups: fixed exception when port type or interface items were not set in the WATO rule...
* 3098 FIX: isc_dhcpd: fixed handling of leases that never expire
* 3099 FIX: mk_mysql: worked around problems where running instances can't be discovered
* 3009 FIX: ESX agent: fixed exception with utf-8 encoded strings...
* 3010 FIX: Fixed vanished snmp subchecks for snmp hosts...
* 3237 FIX: brocade_vdx_status: Fixed broken discovery
* 3238 FIX: if.include: Fixed handling of old-skool traffic limits
* 3104 FIX: ipmi: fixed crash when using summarized output with nagios backend
* 3298 FIX: winperf_processor.util: Fixed exception when CPU counters were not matched
* 3299 FIX: mssql_backup: Fixed exception in case of invalid agent output
* 3300 FIX: zfsget: Fixed excluding snapshots from zfsget section
* 3301 FIX: mrpe: Fixed exception "urllib not defined" when using Nagios as core
* 3333 FIX: Predictive levels: Improved error handling in case no RRDs have been created yet
* 3317 FIX: lnx_bonding: handle bogus output of 1.2.6 agents where >/dev/null is missing after popd
* 3305 FIX: cmciii.phase: fixed wrong datatype handling
* 3107 FIX: heartbeat_crm: fixed incorrect timezone handling...
* 3341 FIX: df: Ignoring mounted lib*.so.1 volumes (seen on Solaris 10)
* 3306 FIX: docsis_channels_upstream: fixed missing channel handling
* 3307 FIX: dell_poweredge_netdev: does not discover disconnected network devices any more
* 3309 FIX: zpool_status: fixed wrong error handling...
* 3014 FIX: windows_tasks.ps1: fixed incorrect text encoding for tasks with umlauts
* 3015 FIX: Dump host (cmk -D): fixed exception with service descriptions containing umlauts
* 3110 FIX: ewon: Various improvements to snmp proxy functionality...
NOTE: Please refer to the migration notes!
* 3016 FIX: mk-job: scheduled jobs are now always executed despite of any status file permission problems...
* 3017 FIX: Fixed missing host/vms inventory information when having multiple datacenters...
* 3018 FIX: netapp_api_disks: ignore disks with raid-state remote (metrocluster setups)...
* 3019 FIX: netapp_api_volumes: fixed incorrect metrics (wrong scaling in graphs)
* 3111 FIX: citrix_status: fixed incorrect assignment of piggyback data to host running the plugin...
* 3020 FIX: netapp_api_volumes: ignore volumes of cluster partner...
* 3022 FIX: mk_logwatch (linux): now able to handle queries from multiple servers (no longer loosing data)...
* 3112 FIX: esx_vsphere_counters: made levels configurable
* 3113 FIX: windows agent: fixed process handle weren't freed when using wmi-based ps check
* 3323 FIX: kernel.util: fix graph template in case steal is present but guest not
* 3367 FIX: nginx_status: Fixed local instance detection for IPv6 loopback address
* 3368 FIX: Fixed regression since 1.2.8b9 which broke all SNMP checks with Nagios core
* 3370 FIX: check_mail: Fixed mail parsing bug when using POP3
* 3372 FIX: check_mailboxes: Improved error handling
* 3117 FIX: windows agent: fixed installer may fail to re-start service on update...
* 3406 FIX: hp_proliant_temp: fixed wrong params data type
* 3408 FIX: temperature.include: now does not ignore levels with value 0 any more
* 3122 FIX: netapp_fcpio: the rules for this check are now actually used...
* 3409 FIX: apt: fixed 'UNKNOWN - Item not found in agent output' error if there are no pending updates
* 3399 FIX: statgrab_mem, hr_mem: Fix display of total installed memory in graph
* 3384 FIX: eltek_battery: Fixed broken check due to wrong spelled include file
* 3400 FIX: local: do not crash in P mode if performance data contains a unit of measurement
* 3386 FIX: AIX agent: Cached local scripts / plugins need to be configured in seconds...
NOTE: Please refer to the migration notes!
* 3387 FIX: ps: Fixed crash during service discovery on AIX hosts having defunct processes
* 3417 FIX: wmi_cpuload: fix exception in case of missing NumberOfLogicalProcessors on some OS versions
* 3124 FIX: workaround for overrunnig counters in a couple of wmi checks...
* 3030 FIX: brocade_info: fixed problem in snmp scan function during service discovery...
* 3389 FIX: ps: Fixed stripped command lines for process checking on solaris systems
* 3391 FIX: CPU checks: Fixed graph per core when cores names don't have a tailing number
* 3392 FIX: avaya_45xx_temp: Fixed broken check
* 3433 FIX: cmc_temp: Fixed broken check
* 3434 FIX: cmctc_lcp: Fixed broken check in case parameter are specified
* 3435 FIX: check_varnish_uptime: Fixed broken check
* 3419 FIX: solaris_mem: avoid crash in case of empty agent section, treat section as missing...
* 3420 FIX: check_ftp, check_tcp, check_smtp: add missing CRIT levels for certificate live time...
* 3421 FIX: cisco_asa_failover: Do not discover interfaces where failover is not enabled...
* 3422 FIX: printer_pages, canon_pages: Detect pages on Canon 8350 with generic check...
* 3463 FIX: ups_modulys_alarms: avoid crash on some SOCOMEC UPS where some alarm OIDs are empty
* 3464 FIX: netstat.linux: fix monitoring of UDP listeners...
* 3523 FIX: esx_vsphere_hostsystem: fixed exception when no multipath state info is available
* 3425 FIX: Fixed extra section handling if no related check plugin exists
* 3465 FIX: df: Fix displayed vertical range of graph of all filesystem checks...
* 3427 FIX: mssql_counters.sqlstats: fixed rate calculation
* 3438 FIX: mk_mongodb: Fixed agent plugin handling when pymongo can not be imported
* 3441 FIX: ps: Added missing graph for number of processes
* 3429 FIX: ps, mem.linux, mem.include: fixed missing parse_proc_meminfo_bytes during precompiling
* 3126 FIX: fixed crash in some wmi-based checks when items disappear from the agent output
* 3443 FIX: mk_logwatch: Fixed exception in agent plugin configuration parsing error handling
* 3444 FIX: mssql: Reworked agent plugin to use less WMI calls
* 3525 FIX: Nagios Core: fixed bug, incomplete cleanup of process tree on service check timeout...
* 3241 FIX: Fixed broken apt plugin
* 3430 FIX: apc_inrow_temp: fixed wrong data handling if data is not available or incomplete
* 3456 FIX: bluecoat_diskcpu: Fixed visualization of graph
* 3467 FIX: logwatch: fix exception in case the logfile name contains non-ascii characters
* 3563 FIX: fortigate_sslvpn: Fixed broken manpage
* 3564 FIX: logwatch_ec: Fixed discovery when Logwatch Event Console Forwarding rule is set to "No forwarding"
* 3565 FIX: wmi checks: Fixed deprecation warning when WMI keys can not be found in agent output
* 3528 FIX: netapp_api_protocol: fixed service discovery problem with older 7mode versions
* 3529 FIX: agent_netapp: fixed problem with older netapp versions (7Mode - Version 8.0)...
* 3573 FIX: ps: Fixed possible wrong matching of ps and ucb ps commands
* 3131 FIX: if64, if64adm: These checks now display the speed of interfaces slower than 1Mbit correctly...
NOTE: Please refer to the migration notes!
* 3470 FIX: mounts: Fix exception when displaying check parameters in WATO services list...
* 3530 FIX: agent_vsphere: improved performance, too much perfcounters were queried
* 3134 FIX: windows agent: fixed bug where the last message of an eventlog was always re-read
* 3603 FIX: wut_webtherm: fixed empty data handling
* 3535 FIX: docsis_cm_status: fixed missing performance data
* 3536 FIX: alcatel_timetra_chassis: fixed exception when check is not OK
* 3604 FIX: ups_capacity.include: fixed displaying wrong levels and cleanup
* 3605 FIX: kemp_loadmaster_ha, kemp_loadmaster_realserver, kemp_loadmaster_services: fixed discovery if data is wrong or incomplete
* 3607 FIX: wut_webtherm: fixed missing sensor data if only decimal comma marked values are available
* 3613 FIX: Fix vertical scaling of graph for disk utilization from 0...1% to 0...100%
* 3577 FIX: Solaris agent: Fixed performance issue introduced with #3389
* 3623 FIX: ipmi: fixed discrete sensor discovery if sensor is disabled
* 3578 FIX: df: Fixed exception when monitoring filesystems without inode infos
* 3624 FIX: oracle_asm_diskgroup: fixed dismounted disk handling
* 3625 FIX: zfs_arc_cache: fixed data handling if hits and misses are missing
* 3626 FIX: dell_eql_storage: fixed scan function if sysDescr is empty
* 3582 FIX: check_mail: Fixed issue with processing multipart mails...
* 3630 FIX: docsis_channels_upstream: fixed channel discovery
* 3584 FIX: check_mkevents: Fixed "failed to parse perfdata" errors in web.log caused by "Events" checks...
* 3587 FIX: SNMP: Fixed possible random IO issues when using classic SNMP...
* 3619 FIX: esx_vsphere_vm.mem_usage: add missing declaration for metrics, use correct unit
* 2238 FIX: postfix_mailq: Fixed incorrect creation of RRDs, Fixed graphs of size and length of queues...
* 3633 FIX: check_sql: minor cleanup in active check_sql, fixed performance data handling
* 3540 FIX: Fixed exception on reading cachefiles...
* 3541 FIX: esx_vsphere_hostsystem.state: no longer crashes when data is missing...
* 3590 FIX: mssql.vbs: Completely removed plugin timeout...
* 3643 FIX: Fixed check_mkevents active check....
* 3635 FIX: get_average: fixed overflow error
* 3653 FIX: fileinfo.groups: Fixed UNKNOWN shown in WATO discovery when configured as manual check
* 3636 FIX: juniper_fru: fixed present state handling
* 3142 FIX: windows agent: fixed rare crash when wmi query for uptime fails...
* 3637 FIX: ipmi_sensors: fixed sensor discovery if sensor is unknown and perfdata handling
* 3545 FIX: netapp_api_vs_traffic: fixed crash when NFSv4.1 information was available
* 3143 FIX: windows agent: fixed some minor memory and handle leaks
* 3144 FIX: bugfix: replacing pipe symbol in plugin output was broken
* 3638 FIX: cisco_qos: fixed wrong unit handling
* 3548 FIX: agent_netapp: fixed agent exception for channels without shelfes. improved 7mode/clustermode differentation...
* 3549 FIX: netapp_api_snapshots: now correctly processes offline volumes...
* 3145 FIX: solaris agent: fileinfo patterns that match a directory will no longer output items for the files in that directory...
* 3147 FIX: windows agent: fixed bug where all placeholders in messages were replaced with the same parameter
* 3654 FIX: apc_symmetra: Improved output in case of unknown battery state / calibration result
* 3655 FIX: if64adm: Can now be used with OID range limits
* 3685 FIX: brocade_fcport: fixed unknown state texts
* 3686 FIX: hp_proliant_temp: fixed wrong device thresholds handling. If no thresholds available the device reports -99
* 3150 FIX: fixed helpers failing to start and high cpu load when an unparsable local check is installed...
* 3151 FIX: windows agent: further fix to crashes on failures to query wmi
* 3693 FIX: ups_eaton_enviroment: Fixed handling of dictionary-based parameters...
NOTE: Please refer to the migration notes!
* 3552 FIX: SNMPv3: Fixed login with security level noAuthNoPriv...
* 3694 FIX: fortigate_sessions_base: Added missing WATO rule
* 3153 FIX: windows agent: fixed two problems that could cause missing wmi results...
* 3555 FIX: esx_vsphere_sensors: fixed incorrect default parameter during service discovery...
* 3665 FIX: hitachi_hnas_*: Fixed service discovery on some devices (e.g. HM800)
* 3666 FIX: ups_*: Fixed discovery for Vision UPS devices
* 3692 FIX: f5_bigip_conns: fixed empty data handling
* 3707 FIX: oracle_tablespaces: cleanup...
* 3708 FIX: cisco_vpn_tunnel: fixed missing phase 2 data
* 3556 FIX: agent_vsphere.pysphere: The ESX 4.1 compatible agent version no longer validates the ssl certificate
* 3709 FIX: cisco_wlc, cisco_wlc_clients: fixed scan function and incomplete listing of interfaces
* 3672 FIX: Agent sections cached by the agent could cause stale services...
* 3727 FIX: fc_port: Fixed broken interpretation of counter values leading to wrong measurements
* 3731 FIX: sap.value-groups: Replaced this check with sap.value_groups...
* 3742 FIX: ps: Fixed broken averaging...
* 3711 FIX: ipmi: fixed wrong status handling if sensor status is ok but failures detected
* 3734 FIX: esx_vsphere_hostsystem.cpu_usage esx_vsphere_hostsystem.mem_usage esx_vsphere_hostsystem.maintenance: Fixed exception when needed data is missing
* 3759 FIX: cpu.loads: Fixed possible crash on missing data
* 3715 FIX: agent_ipmi_sensors: fixed error handling
* 3772 FIX: ipmi_sensors: fixed missing states
* 3562 FIX: agent_vsphere.pysphere: fixed problems related to ssl certificate validation on older distributions/python versions
* 3773 FIX: check_http: fixed proxy authentication
* 3782 FIX: agent_netapp: fixed exception with values containing umlauts
* 3774 FIX: apc_symmetra: fixed wrong status and values handling
* 3761 FIX: windows_tasks: Fixed possible exception in discovery in case of unexpected agent data
* 3762 FIX: local: Fixed long output handling with Microcore...
* 3764 FIX: netapp_api_vs_traffic: Fixed exception when no NFSv4 infos available
* 3765 FIX: oracle_asm_diskgroup: Made check more robust against invalid data received from agent...
* 3766 FIX: palo_alto_sessions: Fixed possible division by zero error
* 3769 FIX: cisco_temperature: Fixed exception in case of empty SNMP data received from device
* 3770 FIX: win_dhcp_pools: Fixed crash in case of empty DHCP pools
* 3781 FIX: ipmi: made check more robust against incomplete datasets
* 3700 FIX: FIX lparstat_aix.cpu_util usage of checkgroup parameters...
* 3798 FIX: Clusters: Fixed invalid timestamp of last cached agent data...
* 3836 FIX: Fixed perfometer in kentix multisensor rack...
* 3848 FIX: megaraid_pdisks: Handle "rebuild" state as WARNING instead of UNKNOWN
* 3849 FIX: check_cpu_peaks: Fixed broken active check
* 3870 FIX: elphase.include: more robust against none type params
* 3801 FIX: Fixed race condition with persisted data...
* 3854 FIX: juniper_bgp_state: Fixed service descriptions in some cases...
* 3837 FIX: Fixed empty check if lnx_if info contains additional line...
* 3802 FIX: Fixed excess Check Helper PIPEs when a datasource program runs into a timeout...
* 3701 FIX: FIX ps.perf graph title for Memory and CPU Usage...
* 3746 FIX: tinkerforge: Keep check from crashing in case of unconfigured params
* 3862 FIX: mknotifyd mknotifyd.connection: New service description (when enabled)...
* 3807 FIX: mssql_counters: fixed crash when the check is unable to parse a timestamp provided by the plugin
* 3808 FIX: df.include: fixed incorrect levels calculations on very small filesystems...
* 3810 FIX: windows agent: no longer truncates plugin output, no longer freezes when plugin produces too much output...
* 3812 FIX: winperf_phydisk: reintroduced read and write queue length performance data...
* 3813 FIX: check_mail: fixed missing base64 decoding on multipart mails
* 3888 FIX: df checks: Fixed invalid displayed WARN / CRIT lines in graphs when using "bytes left" thresholds
* 3840 FIX: cisco_qos: Fixed wrong units in graphs...
* 3890 FIX: check_mk_agent.openbsd: Fixed broken MRPE checks
* 3814 FIX: win_netstat: fixed unicode warning while parsing data
* 3880 FIX: check_sql: fixed missing number in check details
* 3815 FIX: windows_agent: fixed incorrect parsing of only_from parameter...
* 3816 FIX: WATO-Web API: fixed bug in API request validation...
Multisite:
* 3187 notification view: new filter for log command via regex
* 3228 The BI Treestate painter now exports the aggregation tree as real json structure
* 3288 Implemented grouping of services in table views...
* 3297 SEC: Fixes possible XSS in views sidebar snapin...
* 2237 Unique name for columns of Host Groups and Service Groups...
* 3310 New dashlet which shows user notifications
* 3328 Default cloned views to be not public...
* 3376 Cleaned up handling of setting Livestatus AuthUser for "see all" users...
NOTE: Please refer to the migration notes!
* 3397 Show IP addresses of a host when hovering over its name...
* 3436 Views/Dashobards: Can now be published to members of contact groups...
* 3127 new icon on services that are outside their check period
* 3466 Logwatch pages now work in distributed environment without HTTH reverse proxy...
* 3129 new view and datasource containing the results of the last periodic discovery check...
* 3572 Added user login session idle timeout...
* 3575 User logins can now be limited to single session at a time...
* 3592 Views: Added sorter for host names (without site)
* 3141 added user interfaces and permissions to view and acknowledge failed notifications
* 3640 new filter option for status details: can now be negated
* 3713 new filter: hosts with certain service problems
* 3780 availability: now limit of fetched logfile rows is configurable.
* 3864 Now tactical overview is able to show the number of stale hosts and services...
* 3847 Painter options can now be reset to defaults...
* 3856 Improved handling of Check_MK GUI request timeouts...
* 3876 New filter option: negation for several service and host groups
* 3891 Changed graph time range choices...
* 3059 FIX: Fixed highlighting of availability timeline time slices
* 3175 FIX: Fix timeranges of graphs that are embedded in a dashboard...
* 3076 FIX: fixed broken views in check_mk raw edition
* 3077 FIX: CSV export is now available for host/service availability and now includes summary line
* 3181 FIX: Omit icon for downloading agent output on shadow hosts (cmcdump)...
* 3248 FIX: Avoid broken list of context filters and case of a BI error
* 3251 FIX: Fix sorting of entries in Views sidebar element
* 3230 FIX: Slightly improved popup menu positioning...
* 3264 FIX: Fix display of values in graphs that are < 1.0
* 3273 FIX: Dashboard: The dashboard is now preserving edit/view state during page reloads
* 3090 FIX: fixed perf-o-meter link leading to old graph page even when new graphs are being used
* 3260 FIX: Availability: ignores completely unmonitored objects in summary calculation
* 3279 FIX: LDAP: Fixed default values of attribute selections...
* 3285 FIX: Fixed exception when editing large bookmark lists
* 3287 FIX: Fixed broken crash reporting (Submission of crashes did not work)
* 3290 FIX: Fixed broken event quick delete icon when used in dashlets
* 3236 FIX: Fixed host page of pnp4nagios...
* 3293 FIX: Fixed graphs in IE with enabled compatibility mode (for IE < 8)
* 3294 FIX: Fixed mixed languages when some users have localized GUI and some not...
* 3313 FIX: Set correct mime type when exporting CSV and other non-HTML formats
* 3315 FIX: Builtin icon visibility now can be correctly reset...
* 3336 FIX: Fixed possible crash on werk list page...
* 3337 FIX: Improved error handling of invalid perfdata in the GUI
* 3339 FIX: Fixed exception on "Aggregations Affected by Service" page when no host/service given
* 3344 FIX: Removed host inventory painters and sorters from non host based views
* 3345 FIX: Fixed exception when inventory painter was used as group painter
* 3347 FIX: Improved performance when having a lot of users...
* 3355 FIX: Fixed possible broken HW-/SW-Inventory history view
* 3021 FIX: interface metrics: fixed broken interface metrics when using nagios core...
* 3360 FIX: Fixed different exceptions in predictive monitoring GUI
* 3320 FIX: Fix bogus interfering snapins Tree of folders and Folders...
* 3321 FIX: Globes in dashboards now correctly reflect selected WATO folder...
* 3364 FIX: Fixed exception when creating a view of a single log entry...
* 3326 FIX: Fixed white text on white background in mobile GUI
* 3327 FIX: Disallow scheduling downtimes with an end date that is before the start date
* 3373 FIX: Fixed exception when handling syntax errors while loading pagetype files
* 3374 FIX: Fixed broken Logwatch page when a host has no log directory (yet)
* 3375 FIX: Fixed exception when adding a bookmark while having a list not named my_bookmarks
* 3118 FIX: Availability view now takes daylight saving time into account
* 3395 FIX: Fix performance issue when many BI aggregations are active...
* 3398 FIX: Fix exception in Matrix layout if it contains certain complex columns
* 3401 FIX: Fix sorting and grouping hosts by their IPv4 address
* 3402 FIX: Using information from inventory in column tooltips now longer crashes
* 3413 FIX: Correctly display non-Ascii-characters in host tag values in host tag filter
* 3029 FIX: rule editor icon: fixed query of invalid livestatus column...
* 3125 FIX: fixed grouping of werk list by version...
* 3442 FIX: Fixed double escaping of single quotes in comment texts
* 3452 FIX: Fixed vertical label of Bytes/day graphs (like filesystem growth)
* 3453 FIX: apache_status: Fixed wrong graph labels and improved wordings
* 3454 FIX: Fixed scaling of numbers in graphs (e.g. inodes of filesystems)
* 3462 FIX: Fixed ineffective localizations on werk page after language change
* 3468 FIX: Fix changing a user's language back to English if the default is German...
* 3567 FIX: Werk list: Fixed link to not existing check man pages in some cases
* 3569 FIX: Dashboard: Fixed wrong links to views in statistics dashlets when using state filters in dashlet
* 3570 FIX: Dashboard: Fixed different issues with filtering using WATO folders
* 3571 FIX: Fixed missing downtime author filter
* 3537 FIX: PNP/Graph Templates: fixed incorrect scaling of check-mk-ping, check_mk-active-icmp and check-mk-host-ping...
* 3576 FIX: LDAP: Fixed "Internal error" when using the "Filter Group" option in an LDAP connection...
* 3627 FIX: fixed double graphs of database size
* 3586 FIX: Fixed file locking issues (rare and random errors that settings file could not be loaded)
* 2239 FIX: Fixed exception in WATO snapins Folders, Tree of folders and Virtual Host Tree...
* 3148 FIX: fixed Edit View/Dashlet Dialogs offering non-sensical filter choices...
* 3659 FIX: Fixed GUI exceptions for users having special characters in ther user names
* 3662 FIX: Fixed creation/editing of dashboards (regression since 1.2.8p5)
* 3668 FIX: Fixed slow loading of GUI pages when using a localized GUI
* 3669 FIX: LDAP: Fixed very long running LDAP sync when using group based sync plugins
* 3670 FIX: Fixed empty AV PDF report when exporting it from a quicksearch result view
* 3622 FIX: Fix labelling of V-Achsis on graphs with very large numbers...
* 3722 FIX: Mobile GUI: Prevent it from being opened with regular sidebar
* 3723 FIX: Mobile GUI: Don't mix classic and mobile GUI when choosing classic on mobile device
* 3645 FIX: Fixed filesystem growth/shrinkage graph by splitting it up into 2 graphs.
* 3729 FIX: Disabling password field completion for most forms, even in current Chrome
* 3730 FIX: Improved GUI performance in case of different languages used by users...
* 3753 FIX: Fixed graph hover popup of services having special characters in their names
* 3758 FIX: Fixed wrong sorting of events in main dashboard in distributed environments
* 3561 FIX: Removing a comment now also removes any linked acknowledgements...
* 3763 FIX: Fixed playing sounds in views when using current Firefox...
* 3779 FIX: availability: added validation of availability options
* 3767 FIX: Fixed possible UnicodeDecodeError when having users with umlauts in the user ID
* 3850 FIX: Fixed JS error when quicksearch snapin not in sidebar
* 3871 FIX: stale services view: excluded services in downtime per default
* 3874 FIX: fixed graphs displaying wrong labels
* 3885 FIX: Fixed sorting of version in werk list (1.2.8p10 and 1.2.8p11 were not listed on top)
* 3892 FIX: CSV export of views: Joined columns have now a title...
WATO:
* 3244 WATO BI Module: swap order of aggregation function and child node selection...
* 3002 Treasure script wato_import.py: now able to set wato host tag groups
* 3003 New treasure script: migrate_oldcmk2wato.py...
* 3304 Bulk deleting users is now available
* 3239 The delay and the period of notifications can be fractions of a minute now.
* 3116 Timerange buttons for downtimes can now be configured...
* 3469 Show type of rule match of a rule (first, per-parameter, all) in WATO...
* 3130 periodic service discovery can now be configured to not activate specific service changes...
* 3472 Service list of a host: Move section of vanished services to top of the page...
* 3538 Now hiding the activate changes button as long as another activation process is running
* 3618 Better layout for role & permission matrix, also allow sorting and searching
* 3544 The edit host and diagnostic page are now able to handle SNMPv3 credentials...
* 3687 Hostname translation for piggybacked host: now it's possible to enter any number of regular expressions within this ruleset...
* 3657 Custom host attributes can now be configured...
* 3658 LDAP: Connections can now be enabled/disabled per site...
* 3553 SNMPv3 noAuthNoPriv: Fixed diagnostic page
* 3154 added ability to retrieve passwords for active checks from a password store
* 3667 Search expressions in host search can now be given as regexes...
* 3724 Password input fields: Added note about plain text storing (if done so)
* 3728 Automatically creating automation user for Check_MK internal use with WATO default config...
* 3559 WATO API: now able to bake agents with the new action "bake_agents"
* 3785 WATO rulesets: now able to set a negate option for services and items...
* 3786 WATO webapi: now able to bake agents with the new action bake_agents
* 3792 check_http: now able to configure HTTP method PROPFIND
* 3851 Host edit dialog: Checkbox hosttags are now checked by default...
* 3800 WATO rule overview: Adjusted wording of condition texts
* 3855 SEC: Fixed possible command injection by privileged WATO users...
* 3805 WATO WebAPI: The configuration of cluster nodes is now officially supported...
* 3060 FIX: Folder properties: Fixed exception when a user has no alias set...
* 3062 FIX: Git integration: Fixed not adding files in WATO folders to git control
* 3203 FIX: Distributed WATO: Fixed exception in remote host service discovery...
* 3215 FIX: WATO git ignore files are now updated on each commit
* 3216 FIX: Fixed exception when trying to edit an already deleted user
* 3222 FIX: Fixed broken duplicate user id validation when creating new users
* 3223 FIX: Fixed exception in network scan when hosts can not be resolved
* 3224 FIX: Fixed broken "WATO legacy eval"
* 3225 FIX: Fixed exception when renaming a host which is configured as parent on a folder
* 3179 FIX: Fix labelling of heartbeat interval for liveproxyd settings...
* 3180 FIX: Fix broken site specific globals and disabling of WATO in slave sites
* 3182 FIX: Fix bulk operations based on search result folder...
* 2998 FIX: Fixed broken WATO rules where content is dynamically loaded...
* 3246 FIX: Fix link for editing a BI aggregation after coming back from the details of another aggregation...
* 3000 FIX: Host check command: "Use a custom check plugin" was not working with CMC...
* 3231 FIX: Not showing network scan properties in host search form anymore
* 3086 FIX: fixed incorrect host list when one wato folder was a substring of another...
* 3091 FIX: fixed failure to rename hosts in raw edition...
* 3280 FIX: Fixed too often executed network scans...
* 3281 FIX: Fixed network scan overwriting folder modifications made during the scan
* 3282 FIX: Fixed missing validation of network scan properties...
* 3005 FIX: webapi: now able to add new hosts to main folder (bug was introduced recently)
* 3283 FIX: Bulk import of hosts: It is now possible again to import a simple list of hosts...
* 3284 FIX: Bulk import of hosts: Fixed disabling of reading first line as header...
* 3270 FIX: Fix button [Deprecated Rulesets] within deprecated manual checks rulesets
* 3100 FIX: fixed exception when trying to create a wato folder when that folder already exists
* 3011 FIX: WATO host diagnostic page: prevent incorrectly filled input fields...
* 3295 FIX: Fixed exception in WATO git integration when modifying .gitingore file
* 3296 FIX: Hiding pending changes related buttons after discarding changes
* 3314 FIX: Correctly add custom user attribute values after change in attribute declaration...
* 3316 FIX: Fix validation of empty or missing file uploads (such as in Bulk host import)
* 3302 FIX: Improved error handling when trying to edit a not existing rule
* 3338 FIX: Improved error handling when host to be edited does not exist
* 3318 FIX: CSV bulk import of hosts: fix handling of CSV column headers...
* 3351 FIX: Network scan: Fixed number in hosts not being updated during network scan
* 3352 FIX: Network scan: Added hostname translation to translate detected DNS names of scanned hosts
* 3353 FIX: Displaying disabled/offline host state in WATO host list now
* 3354 FIX: Added missing option to exclude IP addresses by regex
* 3357 FIX: Fixed service conditions of Disk IO related rulesets
* 3359 FIX: Fixed exception when trying to edit non existant host...
* 3361 FIX: Event Console files not synced to remote site nor backed up with WATO snapshot
* 3362 FIX: Fixed reload of Event Console in distributed monitoring slave site
* 3363 FIX: Exceptions in WATO Web-API are now rendered as plain text messages
* 3324 FIX: Do not crash whole catalog of check plugins if one man page is broken
* 3325 FIX: WATO CSV import: fix missing first line in preview after user error
* 3365 FIX: Cleaned up wrong counting of parents when renaming a host
* 3366 FIX: Fixed renaming of hosts not updating parents configured in folders
* 3369 FIX: Printing configuration warning when host references itself as parent
* 3371 FIX: Be compatible to old site=None setting read from hosts.mk...
* 3329 FIX: Function discover_services now allows the URL parameter mode...
* 3330 FIX: WATO Web-API now allows to specify root folder with / instead of empty string again
* 3024 FIX: Fixed WATO GIT version control for older (<2.0) GIT versions
* 3377 FIX: Network scan: The scan was broken when having no regex exclude patterns since 1.2.8b9
* 3378 FIX: Fixed too long contact group names overflowing WATO folders
* 3379 FIX: Fixed error resotring WATO snapshot without Check_MK configuration
* 3381 FIX: Folder property editing: Redirect back to folder when coming from folder
* 3382 FIX: Fixed exception when moving multiple folder levels to another folder
* 3383 FIX: Host search: Don't preselect any optional field (Searched for empty values)
* 3450 FIX: Site properties: It was not possible to switch a site back to "local site" connection
* 3451 FIX: Fixed exception in host list when no local site configured
* 3457 FIX: Bulk edit: Prevent browser auto completion of stored credentials
* 3458 FIX: Bulk edit: Fixed broken unchecking of attributes after complain
* 3459 FIX: Bulk edit: Fixed mixup of attributes during consecutive bulk edits
* 3461 FIX: Fixed exception in case manpage for non existant check is accessed
* 3527 FIX: WATO service discovery: fixed warning with locked hosts...
* 3534 FIX: Fixed exception with upload of interlaced PNG files...
* 3242 FIX: Fixed hostname translation for empty optional groups
* 3579 FIX: Fixed visibility of SNMP community attribute when SNMP tag is inherited
* 3583 FIX: Fixed loosing some services after saving services in WATO...
* 3588 FIX: BI aggregation: Fixed folding of tag groups in aggregation rules using host/service searches
* 3620 FIX: Do not longer put SNMP MIB files into WATO snapshots...
* 3542 FIX: WATO Web API: fixed exception when WATO Git is activated...
* 3547 FIX: Deleting a subfolder now generates a correct audit message...
* 3661 FIX: Service discovery is now possible with only "modify services" permission...
* 3152 FIX: lvm_vgs: fixed exception in host-specific settings if rule for LVM groups is set
* 3557 FIX: Web API: get_host/get_all_hosts action now also returns the nodes of cluster host
* 3718 FIX: Changes not needing a core restart are not showing up pending changes anymore...
* 3719 FIX: Fixed possible wrong encoding of audit log messages when editing global settings
* 3726 FIX: Web API: Fixed default output format - using JSON as intended...
* 3733 FIX: BI rule editor: Increased size of argument/parameter/id input fields
* 3735 FIX: Fixed wrong host search link in case of deleting site with hosts assigned
* 3754 FIX: Cluster nodes are now correctly validated for invalid characters
* 3755 FIX: Preventing to insert non ASCII characters in host addresses now
* 3756 FIX: Bulk import: Fixed exception when host name contained special characters
* 3757 FIX: Bulk import: Ensuring non ASCII characters are not imported into regular attributes
* 3760 FIX: Cluster nodes can not be nodes of their own anymore
* 3844 FIX: Fixed validation of host IPv4, IPv6 and management host address attributes...
* 3845 FIX: Added missing validation of host attribute values to WATO Web API calls
* 3881 FIX: fixed automation call 'delete piggyback host'
* 3738 FIX: Fixed sporadic pending changes due to (not) changed contact groups...
* 3739 FIX: Fix exception in displaying check parameter of grouped interfaces...
Notifications:
* 3263 Notifications: allow users to restrict by their contact groups...
* 3532 Rule base notifications: Three new conditions for service groups matching...
* 3140 mail notification script can now optionally connect directly to a smtp server instead of using sendmail...
* 3886 Notifications that do not match any rule are sent to fallback mail / contacts...
* 3253 FIX: sms: notification script sms now handles single quotes in the message in the right way
* 3346 FIX: Re-added envelope sender to asciimail/mail notification plugins
* 3380 FIX: Fixed graphs in service notifications having spaces in service descriptions
* 3418 FIX: Do not send host notifications if a service group is required...
NOTE: Please refer to the migration notes!
* 3426 FIX: sms: fixed wrong message handling after message was quoted and therefore too long
* 3139 FIX: fixed a couple of minor issues in call to notification scripts...
* 3146 FIX: notification scripts will now also timeout when sending a bulk notification...
* 3860 FIX: EC condition: Fixed default value of rule id selection
BI:
* 3271 New option in aggregation for tuning aggregation of downtimes...
* 3396 Change default setting of Precompile aggregations on demand to ON now...
* 3449 The host alias can now be used in BI aggregates...
* 3546 Drastically sped up response time on querying single aggregations...
* 3873 BI: now rules can easily be copied and deactivate temporarily
* 3247 FIX: Do not allow multiple BI aggregates with the same title...
* 3232 FIX: BI: Only querying site of host for specific host status info...
* 3291 FIX: Improved error handling when searching for BI aggregations with invalid regex
* 3358 FIX: Fixed BI Boxes views when "Enable BI compilation diagnostics" enabled
* 3439 FIX: Fixed processing of BI aggregations containing umlauts
* 3440 FIX: Fixed possible BI exception "Unknown BI aggregation group ..."...
* 3574 FIX: Fixed broken aggregations snapin when using aggregations based on hard states...
* 3551 FIX: Now able to open BI aggregations containing a few hundred hosts...
Reporting & Availability:
* 3267 New availability option for reclassifying host state "unreachable"...
* 3102 added option to availability to include host alias in reports...
* 3394 Availability: Annotations can now be used to reclassify the scheduled downtime status...
* 3249 FIX: Fix missing filter for non-OK services when report is called via context button
* 3268 FIX: Availability options were invalid after resetting them...
* 3269 FIX: Fix rendering of floating point values < 1 in graphs (e.g. CPU load)
* 3331 FIX: Availability: avoid duplication of annotation when changing time while editing
* 3332 FIX: Avoid falling back to annotation edit form when reloading page directly after editing
* 3393 FIX: Availability annotations: also show annotations for hosts when showing services
* 3415 FIX: Availability option "Visual levels for the availability" not longer enables itself...
* 3614 FIX: Outage statistics for hosts now also work in PDF reports...
Event Console:
* 2999 The contact name is now included in Event Console notifications...
* 3262 Event Console: bulk delete button for custom MIBs now available
* 3388 Event Console can now process SNMPv3 traps...
* 3390 Events can now be cancelled by the syslog application...
* 3539 Event console: The EC notifications are now also controlled through the master control snapin...
* 3656 Added support for syslog messages produced by Aristana devices...
* 3716 New sites now have a default rule pack from the start
* 3717 Added search to EC settings and structured the options in multiple settings
* 3720 The Event Console views are now supporting distributed setups...
* 3736 New option for discontinuing counting on open event after configured time...
* 3861 Introduced open event limit mechanism for protecting against message storms...
* 3887 Event contact groups are now handled in notifications (optionally)...
* 3058 FIX: Event Console is now allowing non loadable MIB modules on startup...
* 3097 FIX: mkeventd: fixed crash with non-descriptive error message if mibs couldn't be loaded
* 3335 FIX: Improved error handling when requested rule pack does not exist
* 3348 FIX: Improved error handling when trying to edit not existing rules/rule packs
* 3350 FIX: Merged source of Event Console with Check_MK...
* 3240 FIX: Fixed various quotation issues in GUI parts related to the EC
* 3026 FIX: Event console: The "Add comment" option of a rule is now able to add the original text (\0)
* 3566 FIX: Fixed exception on SNMP MIB management page when MIB directory is missing
* 3568 FIX: Fixed broken link in "Access to event status via TCP" help text
* 3589 FIX: Fixed processing of RFC 5424 syslog messages
* 3771 FIX: Fixed exception on edit rule page in case of special URLs
* 3745 FIX: MIB uploads: Handle latin-1 encoded MIBs
* 3884 FIX: Notifications: Fixed wrong LASTSERVICESTATE and SERVICESTATE in EC notifications...
Livestatus:
* 3644 Fixed 'source' column in 'comments' table.
* 3233 FIX: Fixed shutdown of Nagios core with Livestatus module...
* 3235 FIX: Unbreak COMMAND handling...
* 3646 FIX: Fixed Livestatus output formats...
HW/SW-Inventory:
* 3192 snmp_extended_info: now inventorizes all physical components of devices which support the ENTITY-MIB
* 3319 HW/SW-Inventory service can now be OK in case of unreachable host...
* 3322 esx_vsphere_hostsystem: inventory now adds information about memory, uuid and service tag...
* 3028 statgrab_mem, solaris_mem: updated inventory plugins for solaris systems...
* 3447 mssql_versions: Added inventory plugin for MSSQL instances
* 3581 mssql_versions: Added product name to inventory information
* 3585 Implemented API for exporting the full host inventory...
* 3591 mssql_clusters: Added information about nodes to MSSQL instance inventory
* 3550 HW/SW inventory: Now able to raise an alert when SW packages info is missing...
* 3904 Now inventory shows age of sections provided by check_mk_agent
* 3219 FIX: lnx_distro: Now detecting Oracle VM Server correctly
* 3229 FIX: lnx_distro: SLES based systems have now an OS name inventorized\
* 3265 FIX: mk_inventory.solaris: fix problem on Solaris 10, do prtdiag and prtpicl only in global zone
* 3289 FIX: Fixed missing filters in HW-/SW-Inventory views after editing the view...
* 3013 FIX: Inventory: snmp inventory plugins never use cached data...
* 3340 FIX: Fixed exception when searching for software package sizes
* 3025 FIX: solaris_pkginfo: the last element of the reported software package list was always missing
* 3526 FIX: Inventory scripts are no longer called when no data is available for their section...
* 3455 FIX: Fixed broken switch port filtering/sorting view
* 3663 FIX: Added missing system manufacturer filter/painter
* 3664 FIX: Fixed not working hardware/system serial and model painters and filters...
* 3811 FIX: HW/SW Inventory: Fixed GUI display crash when querying data from older software versions...
* 3882 FIX: mk_inventory.linux: fixed wrong graphic card section name
1.2.8b1:
Core & Setup:
* 2771 Errors in Check_MK configuration do not prevent the core from being restarted anymore...
* 2881 Automatically restart core instead of reload after changes in local check plugins...
* 3039 Added more useful debugging infos to crash reports...
* 2682 FIX: Fixed exception Error creating configuration: global name 'extra_host_attributes' is not defined
* 2443 FIX: Fixed quoting of ! in classical nagios checks configured via WATO...
* 2718 FIX: Fixed agent timeouts not resulting in a crash report anympore...
* 2724 FIX: Discovery check: Fixed exception in simulation mode when no cache file present
* 2756 FIX: SNMP: Generalized error handling of emtpy info for SNMP checks...
* 2759 FIX: Allowing Emails to contain special characters like umlauts...
* 2764 FIX: Fixed broken SNMP checks in case SNMP check interval is configured for clusters...
* 2770 FIX: Check_MK is now warning the user about deprecated but configured checkgroup parameters...
* 2848 FIX: Fixed cleanup of old autocheck files of cluster hosts...
* 2894 FIX: Fixed broken cluster checks when using Nagios core...
* 2926 FIX: Fix exception in WATO when a check man page has not catalog entry
* 2944 FIX: Fixed exception during config activation having clusters with unresolvable node IP addresses
* 3037 FIX: Terminate datasource programs when check timeout occurs...
* 2932 FIX: Removal of duplicate services now also works for hosts that are no longer SNMP+TCP
* 3168 FIX: Fix duplicate loading of check that have a copy in local/share/check_mk/checks.
Checks & Agents:
* 2434 NetApp monitoring: Cluster-Mode is now supported, changes in existing 7Mode checks...
NOTE: Please refer to the migration notes!
* 2695 hp_msa_disk, hp_msa_volume: these checks now report more information about disks and volumes of a HP MSA 2040 Storage System
* 2663 knuerr_rms_temp: switch to new generic temperature logic, allow e.g. lower levels...
NOTE: Please refer to the migration notes!
* 2688 mssql agent plugin can now handle clustered MSSQL instances
* 2703 logwatch.ec: now transfers the service level to the event console...
* 2705 winperf_if: added option to warn if an interface is using dhcp...
* 2699 windows_tasks: new task success constant 'an instance of the task is already running'
* 2671 df: avoid duplicate items for btrfs that is mounted several times...
NOTE: Please refer to the migration notes!
* 2441 NetApp 7Mode: Now able to monitor reserved snapshot space for volumes
* 2444 lnx_if: now able to detect interfaces which "break" during runtime...
* 2720 nullmailer_mailq: New check for monitoring the outgoing mail queue of Nullmailer...
* 2707 winperf_processor: can now be configured to warn if a single cpu core exceeds a utilization threshold for a while...
* 2708 sap, sap_state: new sap_state service reports connection problems to sap hosts...
* 2740 local: better warning output in case of invalid agent output
* 2763 apache_status: Can now be configured to use the protocols default port...
* 2787 netapp_api_snapvaults: Clustermode supported, netapp_api_disks: fixed invalid total disk space...
* 2788 ESX Monitoring, esx_vsphere_vm subchecks: VM templates are now excluded...
* 2833 isc_dhcpd, win_dhcp_pools: lower levels for used dhcp leases are now configurable...
* 2789 netapp_api_snapvault: No longer monitors uninitialized volumes...
* 2710 arbor_peakflow_sp, arbor_peakflow_sp.cpu_load, arbor_peakflow_sp.disk_usage, arbor_peakflow_sp.flows, arbor_peakflow_tms, arbor_peakflow_tms.cpu_load, arbor_peakflow_tms.disk_usage, arbor_peakflow_tms.host_fault, arbor_peakflow_tms.updates, arbor_pravail, arbor_pravail.cpu_load, arbor_pravail.disk_usage, arbor_pravail.host_fault: new checks for various arbor devices
* 2711 janitza_umg: added support for umg508...
* 2792 check_mk_agent.aix: now able to use wildcards in the fileinfo.cfg
* 1303 multipath, solaris_multipath: Level for needed paths can now be specified in percent
* 1304 mk_mysql: Agent plugin can now detect multiple instances running unter the same user...
* 2797 netscaler_vserver: now also shows tftp servers and health state of loadbalacing entities
* 2863 wagner_titanus_topsens: added support for more devices...
* 2801 snmp text encoding: now able to decode cp437 encoded snmp strings...
* 2802 esx_vsphere_hostsystem.multipath: now supports ESX 6.0 multipath names
* 2864 fortigate_ipsecvpn, fortigate_sslvpn: Added monitoring for vpn tunnels in fortigate firewalls
* 2838 raritan_px_outlets: monitors the voltage, current, power, apparent power and energy of Raritan PX Devices
* 2839 raritan_px_sensors, raritan_px_sensors.binary, raritan_px_sensors.humidity: monitors the temperature, contact and humidity of Raritan PX Devices
* 2840 barracuda_mail_latency, barracuda_mailqueues, barracuda_system_cpu_util: new checks for Barracuda SPAM Firewall Appliance...
* 2865 fortigate_memory_base: added check for fortigate firewall memory usage...
* 2841 emcvnx_writecache: the check monitors the write cache state of the storage processors of an EMC VNX Storage System
* 2803 netapp_api_volumes: clustered volumes now longer show the current node name in the service description...
NOTE: Please refer to the migration notes!
* 2780 cisco_vss: detect this check on newer (15.1) devices
* 2874 netstat_an.bat: Restrict output of connections to TCP, safes performance
* 2866 ewon: Added support for monitoring Wagner OxyReduct devices with their data exposed through an ewon router...
* 2884 mssql_blocked_sessions: the state of the blocked sessions is now configurable
* 1313 apc_sts_inputs: New Check for APC Static Transfer Switches: Input Phases
* 1314 apc_sts_source: New Check to monitor if the input source changes on APC STS devices
* 1315 check_mk_agent.linux: The ps section of the agent now supports long usernames...
* 2869 ibm_storage_ts, ibm_storage_ts.drive, ibm_storage_ts_library, ibm_storage_ts.status: new checks for IBM TS3100 Tape Library
* 1316 mysql_slave: Levels can now be configured with WATO
* 2809 netscaler_vserver: now reports health_perc as performance data
* 2885 cisco_hsrp: now reports the HSRP state...
* 2812 Avaya Series 88xx / 45xx: New temperature, fan and CPU utilization checks...
* 2870 dotnet_clrmemory, wmi_cpuload, wmi_webservices, msexch_activesync, msexch_autodiscovery, msexch_availability, msexch_isstore, msexch_owa, msexch_rpcclientaccess: a whole slew of new checks relating to monitoring MS Exchange...
* 2816 check_mail_loop: now supports STARTTLS for IMAP authentification
* 2817 cmc_temp: New temperature check for Rittal devices using the CMC MIB
* 1600 check_mk_agent.linux: Diskstat Sektion now supports s390 DASDs (zLinux on IBM Mainframes)
* 1318 cisco_asa_svcsessions: New Check to monitor VPN Connections on Cisco ASA devices
* 2886 solaris_fmadm: new check monitors the severity and name of the fault class on Solaris systems using the 'fmadm faulty' command
* 2871 msexch_database: New check to monitor access latencies to MS Exchange Databases
* 2872 supermicro, supermicro.sensors: New check to monitor health on snmp-enabled devices by supermicro
* 2913 fortigate_node, fortigate_node.cpu, fortigate_node.memory, fortigate_node.sessions: New checks to monitor HA nodes of fortigate firewalls
* 1319 blade_bx_powerfan: Check can now be configured using Wato
* 2915 supermicro.smart: new check to monitor harddisk health on snmp-enabled supermicro devices
* 1321 sap.dialog: It is now possible to configure levels for FrontEndNetTime, ResponseTime and UsersLoggedIn
* 2916 checkpoint_fan, checkpoint_firewall, checkpoint_ha_problems, checkpoint_ha_status, checkpoint_powersupply, checkpoint_svn_status, checkpoint_temp, checkpoint_voltage: New checks for various aspects of checkpoint firewalls
* 2890 cisco_nexus_cpu, cisco_oldcpu: new checks for Cisco devices which do not support CPU utilization information from CISCO PROCESS MIB
* 2918 agent_jolokia: jolokia can now be monitored using a special agent
* 2919 hp_webmgmt_status: New check for health status of various Hewlett-Packard devices...
* 2920 hr_cpu: this check can now also supports per-core features...
* 1322 solaris_prtdiag_status: New Check for Solaris Hardware State based on prtdiag
* 2921 printer_supply_ricoh: check now tries to handle negative readings properly...
* 2922 check_mk_agent.linux, check_mk_agent.solaris: mrpe sections can now be cached...
* 2933 openhardwaremonitor, check_mk_agent.windows: added agent support and check for monitoring hardware sensors through OpenHardwareMonitor...
* 2829 filesystem checks: introduced default levels for inodes used (10%/5% free)...
* 2934 all temperature checks rewritten to use the shared temperature api...
NOTE: Please refer to the migration notes!
* 1323 win_printers: Warning and Critical levels can now be set...
* 1324 New Check for Dell Equallogic SAN Devices
* 2892 qlogic_fcport: now supports QLogic FC Switch SANBox 5802 series
* 2937 mrpe: check now supports service descriptions using percent-encoded characters...
NOTE: Please refer to the migration notes!
* 2938 websphere_mq_channels: check outcome based on channel state is now configurable...
* 2832 netscaler_vserver: improved check output for unknown protocols...
* 3033 check_http: Now supporting extended perfdata parameter of the check
* 2456 palo_alto, palo_alto_sessions: Two new checks for Palo Alto firewalls.
* 2985 MongoDB: Introduced agent plugin and some checks...
* 2457 mssql_counters.sqlstats: New check to monitor several rates from the SQL statistics object
* 2941 tinkerforge, tinkerforge.ambient, tinkerforge.humidity, tinkerforge.motion, tinkerforge.temperature: new checks to monitor tinkerforge sensors...
* 2988 check_mk_agent.aix: now provides infos for postfix mailq check
* 3067 openhardwaremonitor.smart: initial support for S.M.A.R.T. harddisk health monitoring via OpenHardwareMonitor...
* 2975 mk_jolokia: now supports HTTPS
* 2976 eltek_battery, eltek_battery.temp, eltek_battery.supply, eltek_fans, eltek_outdoor_temp, eltek_systemstatus: new checks for a Eltek Valere USV
* 2989 netapp_api_snapshots: increased performance while querying data. levels configurable...
* 2977 aruba_wlc_clients: new check which monitors the WLC clients of a Aruba Networks WLAN Controller
* 3173 datapower_cpu datapower_fan datapower_fs datapower_ldrive datapower_mem datapower_pdrive datapower_raid_bat datapower_tcp datapower_temp: Detect XI52 Model
* 2979 aruba_wlc_aps: new inventory plugin for Aruba Networks WLAN Controller which displays name, group name, model, serial number and system location of all access points of this WLC
* 2980 agent_ipmi_sensors: new special agent to monitor IPMI data via ipmi-sensors (of freeipmi)...
* 2981 isc_dhcpd: added leases path /var/lib/dhcpd/dhcpd.leases for CentOS
* 2982 solaris_services.summary: new check which gives a summary of services provided by SMF on Solaris
* 2660 FIX: fixed windows agent using the wrong working directory...
* 2664 FIX: ps: Speedup in situation with many matching processes...
* 2661 FIX: windows agent: fixed incomplete process list...
* 2665 FIX: ps: fix crash in case of quota violation on Windows
* 2437 FIX: joloka_metrics.perm_gen: fixed broken check...
* 2683 FIX: Fixed exceptions occuring in some ps checks...
* 2662 FIX: windows agent: fixed inventory running every time when ipv6 was activated...
* 2697 FIX: hp_msa_controller.io, hp_msa_disk.io, hp_msa_volume.io: fixed broken I/O calculation
* 1296 FIX: aix_memory: Check can now handle systems without swap partition
* 2690 FIX: ps: Fixed processing of old inventory_processes rules in discovery function...
* 2236 FIX: cups_queues: Correct not working discovery after werk #2504...
* 2668 FIX: jar_signature: Handle case correctly where certificate is already expired
* 2669 FIX: mcdata_fcport: fix computation of in and out traffic...
* 2692 FIX: check_http: Fixed broken check when using Nagios (introduced with 1.2.7i3)
* 2706 FIX: winperf_if: fixed rare crashes of windows_if.ps1 plugin...
* 1297 FIX: emcvnx_hba: Prevent old emc versions from inventory...
* 2698 FIX: ups_capacity: fixed missing battery time and fuel information
* 2672 FIX: mounts: ignore options that are allowed to change on btrfs filesystems...
* 2445 FIX: ibm_svc_disks: fixed crash in case special agent reports too much data columns per line
* 2734 FIX: cmctc.temp: fix exception of type UnicodeDecodeError
* 2446 FIX: Active checks check_mail, check_mail_loop: did not work with POP3 protocol...
* 1300 FIX: ovs_bonding: Fixed discovery exception in case of not active bond
* 1301 FIX: cmciii: Some rewrites of the cmciii Temperature and Power Phase Checks...
NOTE: Please refer to the migration notes!
* 2735 FIX: esx_vsphere_datastores: fix labelling, help and performance data of provisioned space...
* 2737 FIX: bluecoat_sensors: fix crash when using Nagios as core (missing include)...
* 2738 FIX: Check_MK Caching agent on Linux: introduce timeout for lock...
* 2725 FIX: Dynamic levels: Enforce config of levels for filesystems larger than 0 bytes...
* 2726 FIX: veeam_backup_status: Fixed missing agent section error in case of aborted tasks
* 2727 FIX: ibm_imm_health: Fixed unhandled exception when SNMP info is missing
* 2730 FIX: if64: Grouping of interfaces resulted in an exception...
* 2741 FIX: isc_dhcpd: Fix problem where outdated leases where counted as active
* 2731 FIX: smart.temp: Handles case of missing temperature values correctly
* 2753 FIX: ad_replication: Made check more robust agains garbled agent output
* 2773 FIX: omd_staomd_status: handle case where site's software installation is broken
* 2754 FIX: ipmitool: Killing asynchronous ipmitool call after 300 seconds...
* 2755 FIX: apc_symmetra: Check is handling missing data more robust now
* 2783 FIX: esx_vsphere_datastores: fixed crash when no provisioning levels were set
* 2700 FIX: ibm_svc_node: fixed handling with agent output after firmware update
* 2701 FIX: zfsget: fixed handling in case of zero total size based on buggy 'df -h' command on some solaris systems...
* 2702 FIX: oracle_diva_csm: fixed handling of empty sublists
* 2761 FIX: check_http: Fixed handling of multiple strings given as "Strings to expect in server response"
* 2786 FIX: agent_netapp: now able to monitor more than 20 instances of a given type, e.g. volumes or interfaces...
* 2765 FIX: heartbeat_crm: Fixed issue detecting outdated data with daylight saving time
* 2775 FIX: omd_status: handle case where status information is incomplete due to missing cmk version
* 2835 FIX: netextreme_psu_in: fixed wrong voltage usage handling...
* 2776 FIX: apache_status: fix crash for Apache versions with yet unhandled status fields
* 2836 FIX: pandacom_psu: fixed handling of not available power supplies