forked from centreon/centreon-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
2254 lines (2071 loc) · 108 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
## Centreon 2.7.6
* Fix: Hard PATHs in some folders
* Fix: Correction of some typos
* Fix: contact_location default value incorrent
* Fix: Problem with custom view style, when user was not able to edit the view then old style was used.
* Fix: Centreontrapd - issue if number of downtimes is greater than 1
* Fix: Service comments wrong request
* Enh: SQL Optimisation in handling service templates
## Centreon 2.7.5
* Fix: Flapping configuration was not exported to Centreon Engine configuration files
* Fix: Option “test the plugin” didn’t working with special characters
* Fix: It was possible to select Meta Service or BA in performance page filters
* Fix: With non admin users, it was impossible to select services in Performances page
* Fix: Non admin users could not seen services in Reporting page
* Fix: Number of hosts in Hostgroups was not good for non admin users
* Fix: Max and Min was not correct for inverted curves
* Fix: It was impossible to create Virtual metrics with web UI in french language
* Fix: Exclude Desactivate poller in configuration generation page filter
* Enh: Add an error message when no pollers are selected in configuration genration page
## Centreon 2.7.4
* Fix: Contacts in contactgroups were exported with a wrong ID
* Fix: Error when saving “Administration > Parameters > Monitoring” page
* Fix: Zoom in Performance graph
* Fix: Select contactgroups / contacts in services & hosts configuration was not working
* Fix: Display only catagories and not severities on form
* Fix: Scroll bar in “Configuration - Hosts - Host Groups”
* Fix: Category Relation on host and host template form
* Fix: Order in More Actions Menu
* Fix: generateSqlLite not install with source
* Fix: SSO connection with LDAP user
* Enh: Add possibility to set local to “browser” when adding a contact by CLAPI
## Centreon 2.7.3
* Fix Recurent downtimes starting at 00:00
* Fix search in Poller configuration page
* Fix problems when sharing custom views
* Fix description problem with custom macros containing dash
* Fix time Interval change isn't being reflected in the polling Engine config
* Fix Missing GMT and UTC timezone
* Fix No performance graph for host group service
* Fix ACL were showing too much objects
* Fix Impossibility to delete custom macros on service
* Fix Split on multi graph
* Fix Design on Monitoring Performances page
* Fix CLAPI handled all broker parameters
* Fix Custom macros can contain dash
* Fix Time Interval change isn't being reflected in the polling Engine config
* Fix UI doesn't display the good limit of pagination
* Fix Some French translations were missing
* Enh Improve listing possibilities in Widget configuration (Pollers and categories)
* Enh Usuability of select2
* Enh Possibility to reload several pollers in one time
* Enh Add an API to send External Command
## Centreon 2.7.2
* Fix eventlogs pages for performances and right for non admin users
* Add New possibilities for ACL and Custom Views
* Fix Recurent Downtimes behaviour with timezones
* Fix some broken relations in web interface
* Fix Reporting pages for non admin users
* Fix some elements with the generation of the configuration
* Fix encoding problems
* Fix filters in configuration pages
* Fix Poller duplication
* Fix various ACL problems
* Fix some SQL requests
* Fix export of Meta Services
## Centreon 2.7.1
* Improved ergonomics of the select2 component
* Improved performances of monitoring pages
* Improved performances of the event logs page
* Improved performances of downtimes configuration on host page
* Improved documentation
* Fixed problem when sharing views in Custom views page
* Fixed a right problem in CLAPI generation of the configuratio
* Fixed problem in services per hostgroups pagen
* Fixed problems in configuration generation when mysql is not using 3306 port
* Fixed Remove group of line in graph component configuration
## Centreon 2.7.0
Features and Bug Fixes
----------------------
* Changing the graphic charter to be consistent with the new logo Centreon
* Flat design (CSS and icons)
* Custom view improvement
* Adding an editing or visualization mode
* Graphic widgets relief to be able to put more on a page
* Adding a fullscreen mode
* Menu Review for improved navigation and simplified user actions
* Review og pages dedicated hosts and services pages in monitoring to include to include more informations.
* Redesign of the reporting page
* Recasting bar searches and filters in each page of Centreon
* Redesign Event Logs page (removing treeview + Added search system + Improved performances)
* Redesign view page (removing treeview + Added search system + Improved performances)
* Merging downtimes pages for hosts and services
* Merging comments pages for hosts and services
* Integration of a graphics module to replace a non-performing component QuickForm (Improved forms on multi element selection)
* Simplifying the configuration of Centreon Broker (Temporary and Failover are automatically configured + enhanced best practices)
* Ergonomic improvement of the congigurations objects:
* Improved hosts form
* Improved services form
* Improved management macros: dynamic form system that provides the necessary inherited macros templates for proper operation of the configuration
* Added ability to set a description of each macro used in commands
* Review of the pathway for the generation of the configuration
* Automatic creation of a configuration file for the poller when it is created
* Deleting configuration options in the Administration section, now automatically configured. This simplifies the handling of Centreon
* Improved ACL system (Improved performances)
* Native integration of Centreon CLAPI
* Improved documentation
* Redesign Configuration part
* Redesign Exploitation part
* Integration of the API part
Changes
-------
* Important web design changes can make interface not compatible with older modules. A refactoring work will be needed to ensure optimal operation.
* Changing the timezone system : DST management (may need to check the timezones of each host and contact after the update)
* Changing databases schemes for hostgroups and servicegroups in the real state database (centreon_storage) : added id and deletion of alias, url, url note, icon.
* Changing the path for generating the configuration of Centreon Engine instances : no more specific page to generate the configuration. The action is now available from the pollers list.
* Switching to InnoDB all Centreon tables (except logs and data_bin too big for an automatic update).
* PHP 5.1 no longer supported
* Browser compatibility : IE 11, FF 5 et Chrome 39 at least
* Shared views in custom views are not atomaticaly loaded in views of others users. Now views are able to be public and user can load them during the creation step.
Secutiry fixes
--------------
* Removing PHP session ID in the URL of the Ajax flow of certain pages.
* Integration of a CSRF token in all forms to prevent "Man in the middle" effect.
Removed Features
-----------------
* Nagios and NDOutils are no longer compatible with Centreon web. Only Centreon Engine and Centreon Broker are compatible from version 2.7.0
* Removing centstorage and logAnalyser executables.
* Removing the Nagios configurations load module.
* Removing the ability to configure the colors of graphics templates
* Removing color choices for menus
* Removing choosing colors for monitoring status
* Removing the ability to configure Nagios CGI
* Transformation of the tactical overview in widget
* Transformation of the Monitoring Engine statistics Page in widget
* Deleting the Server Status page (phpsysinfo) become incompatible with the PHP version recommended for Centreon
* Remove timeperiod exclusions in the UI. This function don't work very fine whether with Centreon Engine 1.x or Nagios. We prefer removing the function in order to avoid problems.
## Centreon 2.6.6
#3812: Strange display of service group details page with Centreon 2.6.3
#3824: PHP Warning: array_map(): Argument #2 should be an array
#3840: Centreon 2.6.4 : Wrong reporting graph data with default user language fr_FR.UTF-8
#3846: [2.6.5] CRSF Token critical: Impossible to upgrade a plugin
#3847: [2.6.5] split component switch
#3852: [2.6.5] CSRF error appears in user massive change form
#3854: Cannot add new macro after deleting all macros already created
#3855: Cannot add new host template to host after deleting all templates
#3861: Comments shows only "A"
#3864: [2.6.5] CSRF when trying to upload a SNMP MiB
## Centreon 2.6.5
#3831: XSS injection in object lists (ZSL-2015-5266)
#3835: CRSF Issues on Centreon (ZSL-2015-5263)
#3821: Upgrade from 2.6.1 to 2.6.3 kill Centreon Frontend
#3826: Split Component and zoom doesn't work
#3827: Service Group Details page isn't displayed for non admin in Centreon 2.6.3
#3837: Relation of passive service with SNMP traps problem with multihost link
#3842: Full logs display on event logs page for a non admin user
## Centreon 2.6.4
#3793: Porblem when creating an empty hostgroup with non admin user
#3795: Update Centreon Administration About page (forge -> Github)
#3796: Problem when connect two time with same user in API
#3797: Password in macro
#3800: Current State Duration isn't displayed
#3803: ACL : Manage multiple Resources group on the same ACL user group
#3807: Unable to enable status option on main.cfg
## Centreon 2.6.3
Bug fixes
=========
#564: Filter field does not work in service groups monitoring screen
#1000: Services of service groups are dispatched on many pages
#3782: SQL Keyswords
#3783: index_data switch in option form
#3788: Problem with static keywords
## Centreon 2.6.2
Features
========
Modules can extend actions after restart/reload pollers
Security fixes
==============
#2979 : Secure the type of media file can be uploaded
Fix some SAL injections
Bug fixes
=========
#3559 : Fix query with MariaDB / MySQL configure in STRICT_TRANS_TABLES
#3554 : Can send acknownlegment with multiline from monitoring page
#3397 : Fix display graph with unicode characters in metrics name
#2362 : Correct value when use index_data insered by Centreon Broker in configuration
#1195 : Display correct number of pollers in status bar
#196 : Display all colunms when filter the Monitoring services unhandled view
## Centreon 2.6.1
Bug fixes
=========
#5655: Changing Host Templates doesn't delete services
#5925: Popup Dialogs (Acknowledge, Downtimes etc.) not working with Internet Explorer
#6224: Special characters in LDAP are replaced by underscore
#6358: It's possible to bypass ACLs on Event Logs page
#6375: servicegroups empty into servicegroups.cfg but ok in DB
#6377: PHP logs are too much verbose with PHP 5.4
#6378: PHP logs are too much verbose with PHP 5.3
#6383: Random severity on services
#6390: Escalations with contact groups containing space
#6391: Some traps are skipped
#6396: Warning and critical threshold display in centreon graph
#6399: Wrong condition in centreonLDAP.class.php
#6410: Do not limit to 20 the number of trap rules or macro in host and services config pages
Features
========
#6035: Removing Centreon Broker local module
#6366: New option for Centreon Engine log
#6392: Block choice of Nagios and NDO in installation processus
## Centreon 2.6.0
Bug fixes
=========
#3239: PHP-5.4 Compatibility
#5795: ACL and configuration modification with admin users
Features
========
#5334, #6114, #6120 : Optimisation and customization on centreontrapd
#5952: Add possibility to rebuild partially Events informations
#6160: New Centreon logo
## Centreon 2.5.4
Bug fixes
=========
#5458: Display problem with host groups
#5924: Generation of service configuration files does not work when "service_inherit_contacts_from_host" is not enabled
#5926: Centreon-Broker-2.7.x compatibility
#5929: Fix problem in import service groups by cfg file
#5942: Fix compatibility with IE
#5946: Problem in reporting due to acknowledgement
#5986: Session's Id does not change after logout
Features
========
#5433: Argument column larger in service configuration
#5944: Services inherit criticality from hosts
## Centreon 2.5.3
Bug fixes
=========
#5895: Security Issues : CVE-2014-3828 & CVE-2014-3829
#5888: Differences between update and fresh install for "Insert in index data" field
#5829: Add config file in parameters for all crons of Centreon in order to install centreon on different directories
#5852: Fix problem with massive change for "Inherit contacts from host" in service form
#5841: Empty dependences are now remove automaticaly
#5840: Fix problem with host duplication when this host has a "'" in the alias
#5790 & #5813 & #5750: Fix problems on Tactical overview
#5786: Fix problem when generating correlation config file.
#5756: Fix problem with centstorage => Table log is growing to much
#5609: Push Centreon Broker table to UTF-8
#5589: Fix problem with Contact inheritance between service and its template who doesn't work
#4865: Fix problem with search in Eventlog
## Centreon 2.5.2
Bug fixes
=========
#5593: Fixes a bug where trap advanced matching rules were not working
#5600: Fixes a bug where it was impossible to add or modify a poller
#5533: Fixes a bug where it was impossible to update the severity level of a service
#5307: Tooltips messages were not translated in the Broker configuration form
#5664: Enhances loading time of the service detail page
#5439: Enhances loading time of the meta service page
## Centreon 2.5.1
Bug fixes
=========
#5521: Fixes a bug where the reporting dashboard always showed 100% undetermined
#5460: Fixes a bug where it was impossible to apply a recurrent service downtime
#5446: Fixes a bug where RRD retention was ignored in Centreon broker configuration
#5432: Fixes a bug where NEB module entries were not properly saved in the main.cfg form
#5404: Macros were not properly replaced on Debian distros
#5345: It was impossible to import host.cfg and contact.cfg
#5319: The mute button of sound notification was omitted in Centreon 2.5.0
#5313: Fixes progressbar in generation of configuration file
#5309: Fixes various locale issues
#5174: LDAP sync will no longer discard contact's email when it's empty on LDAP's side
#4930: The appearing order of widgets was messed up when there were more than 10 widgets in a view
#4571: It was impossible to start a remote poller from the Web UI
## Centreon 2.5.0
Features
========
#4176: ACL on configuration objects
#4678: UI notification and sound alerts
#3768: Advanced features on SNMP traps handling
#4666: Possibility to execute a command upon restart of monitoring engine
#1728: SSO authentication
#1845: Additive inheritance is handled on host and service templates
#4997: Service groups can be linked to service templates
Enhancements
============
#4507: Code refactoring
#4662: Downtime duration can now be expressed in minutes
#3768: UI - new draggable dynamic input fields
## Centreon 2.4.5
Enhancements
============
#3616: Centreon Broker : new fields ("warn_low", "warn_threshold_mode", "crit_low", "crit_threshold_mode") added in metrics table (centreon_storage database)
#3765: Centreon Broker configuration : new option "log_timestamp" added
#3767: Centreon Broker configuration : new option "write_metrics" added
#4203: Centreon Broker : new fields ("actual_start_time", "actual_end_time") added in downtimes table (centreon_storage database)
#4440: Centreon Broker configuration : new option "store_in_data_bin" added
#4579: Improve connector form (for Centreon Engine 1.3+)
#4586: Centreon Broker configuration : new option "insert_in_index_data" added
#4651: Centreon Broker configuration : new option "log_thread_id" added
Bug fixes
=========
#4620: Service groups are displayed twice in "Service Details"
#4652: Fix issues in connector form
#4658: Problem when adding new poller
## Centreon 2.4.4
Enhancements
============
#3782: Handle ABSOLUTE and DERIVE graphs
#4402: Contact list label inconsistency
#4500: Possibility to copy and paste generated password
#4506: Snmp configuration files get overwritten
#4549: Possibility to choose display order on monitoring consoles
#4568: Enhances generation time of configuration files
Bug fixes
=========
#4319: Malformed long output on host/service detail pages - /w Centreon Broker
#4454: Services are not created after import of configuration
#4483: RRD status graphs not displayed in detail page
#4485: Fixes LDAP connection and import issues
#4486: Filter problem with hostgroup and centreon-broker
#4487: import-mysql-indexes : Failed to drop index 'PRIMARY' for table 'timeperiod_exclude_relations
#4488: Autologin in main page does not work
#4489: init.d scripts not compatible with SLES
#4494: Missing tooltip in «Configuration > Centreon > Pollers»
#4496: Curve's «Legend Name» cannot contain «:»
#4497: Status graph, not resized with default template
#4504: centcore blocked due to blocking named pipes
#4522: Special chars are converted to html entities in check commands
#4524: Plugin outputs not displayed properly
#4533: setgid flag for the filesGeneration directory
#4536: Rename default Swap template name
#4537: "Display all services for this host" does not working
#4542: MetaService not visible with a non admin user
#4544: Fixe default configuration on main.cfg
#4555: [monitoring] Ack in host details page + Blank page
#4570: MetaService graphs not displayed when negative values are involved
#4577: Pending state labels not shown in Home > Global health for hosts
## Centreon 2.4.3
Enhancements
============
#4389: Set max value for CPU Graph template
#4406: Centreon broker statistics.
#4472: Display the link between resource macro and poller
Bug fixes
=========
#4120: IsRunning NO
#4340: Move configuration files errors (images)
#4343: Default SNMP Traps not submitted by default since 2.4.0
#4356: Services associated with service categories
#4364: Special characters and htmlentities function
#4368: Centreon generate check_period with value _GMT
#4384: [Virtual metric] issue with metric name
#4391: Load Nagios Configuration produces unusable services.cfg
#4400: Issue with hostgroup filter in all services
#4409: Useless field into administration, monitoring options.
#4412: Default configuration.
#4413: [move] File config move
#4417: service with multiple servigroups linked to different escalations : escalations not correctly generated
#4426: [upgrade] some issue in SQL upgrade
#4431: [dashboard] Quick search for host
#4452: Possibility to execute scripts through some form input fields
#4459: Blank page for the statistics of Centreon Broker if the file of statistics is not configured
#4460: configuration > recurrent downtime - display issues
#4462: [ldap][contactgroup] Form listing and sync when you remove user from ldap group
#4464: No translation for icons in "monitoring -> services"
#4465: Missing tooltips help in "Configuration -> Users -> Contacts / Users -> user_definition"
#4466: No translation in graphs for Daily/Weekly/Monthly/Yearly
#4467: No translation for icons in host details
#4468: No translation for hosts and services status colors configuration
## Centreon 2.4.2
Enhancements
============
#4215: Import from ldap server must display a warning when no ldap configuration has been checked
#4240: IDE complains about invalid syntax in htmlHeader.php
#4246: Add index on downtimes tables
#4249: Tell me which poller has latency [patch provided]
#4259: [downtimes][broker] Perf issue
#4274: Existing centreon.conf still gets overwritten
#4299: eventReportBuilder.pl > Performance optimization
Bug fixes
=========
#3455: Conf SNMP
#3552: ACL > Resources Access
#3615: Bug avec IE7/8
#4021: Primary key name for timeperiod_exclude_relations
#4120: IsRunning NO
#4161: Graphs margin values need to be updated
#4195: IPv6 addresses shown incorrectly at session page
#4223: CSV Export not Working in Views->Graphs
#4227: Graph stacks when inserting new metric
#4230: Options field not use in Poller Configuration
#4234: Difference between Criticity service and Criticity host
#4237: Warning message when host no longer in Centreon configuration
#4242: Hardcoded path in documentation
#4243: Slow sql query in tacticalOverviewXml.php
#4251: Menu contextuel dans Vues -> Graphiques -> Courbes
#4260: graph - issue with negative values, warning and critical
#4262: probleme a l'installation avec IE8
#4266: Tactical Overview - ndo and centreon 2.4.1
#4267: Probleme avec fichier de Log
#4269: CES standard 2.2 (en mode central avec centreon-engine et centreon-broker)
#4275: Dashboard percentages wrong after upgrade
#4277: [2.4.1] Uninitialized value in logAnalyser
#4278: [broker][config] Correlation file error
#4283: last_execution_time not consistent
#4284: Macro @MAILER@ set to void during fresh install
#4285: check_meta_service doesn't work in 2.4 and 2.4.1 with Centreon-Broker
#4286: centAcl.php hangs forever
#4288: [Centreon 2.4.1] Services by HostGroup not displayed in Event Logs
#4293: [2.4.1] Dashboard Hostgroup - Les hosts inactifs sont affichés et donc ressortent en indeterminés.
#4297: column size in different menu
#4307: Disabled meta services are still displayed in monitoring console
#4308: Cannot use import-mysql-indexes and export-mysql-indexes on remote host (-H option)
#4312: Bug après désactivation de services
#4313: Bug après modification des commandes notifications
#4315: Graphs not shown on french platforms
#4321: centTrapHandler does'nt handle output message args correctly
#4322: rsync on alternative port doesn't work (patch attached)
#4325: Sync Trap Poller
#4327: Update centreon 2.3.9 -> 2.4.0 Bug Centcore & Centstorage
#4329: Host set downtime multiplied when selecting services
#4337: Plus d'infos sur la page d'accueil après passage en 2.4.0
#4338: Impossible d'ajouter un widget
#4341: Version error during CLI install
## Centreon 2.4.1
Enhancements
============
#4028: Failover for Broker SQL Database and Perfdata Generator (Centreon Storage) with Wizard Configuration
#4046: Optimize cron centacl.php
#4148: Precise tool tip for unix socket configuration in rrdcached options.
#4218: Remove Aggressive Host Checks selection.
#4225: Add index on hosts and services tables
Bug fixes
=========
#3306: genEscalations.php stopping after generating first escalation
#3664: LDAP groups not resolved with every config generation
#4039: centcore - missing data when rotation occurs
#4049: Duplicate menu in ACL Menu Access
#4058: [tool] logAnalyser-cbroker: problem with status/type
#4065: snmptt daemon starting failed
#4067: Error receiving trap with snmptthandler
#4068: Configuration > Services (by host/hostgroup) > duplication input value is overwritten
#4069: Centreon 2.4.0 Stable RPM
#4073: Inheritance of check command when defined in service template
#4074: Incorrect error message for wizard configuration
#4079: _() expects exactly 1 parameter, 2 given
#4084: Problème avec les downtimes récurrents sur Centreon 2.3.9
#4088: [migration] LDAP Users: user page blank
#4089: [monitoring] Ack in service details page + Blank page
#4090: [dashboard] MySQL Port and ndo
#4091: Criticality column in "home > tactical overview"
#4096: [2.4] Erreur dans le fichier logAnalyser.log
#4097: [2.4] Erreur sql ACL das sql-error.log
#4098: [LOG] EventLog page: too heavy
#4100: [2.4] Table 'centstorage.rebuild' doesn't exist
#4105: [2.4] centreon-purge.log message tronqué
#4108: Ask about Embedded Perl initialisation file during cli install
#4109: Debian cent* init script
#4111: message non affiché lors de la génération des fichier conf de TRAP
#4112: Fichier centTrapHandler-2.x non configuré lors d'une installation ou mise à jour de Centreon 2.4
#4115: Update 2.4 crée une macro USER $USER3$
#4119: Duplication error
#4125: Probleme installation avec IE8 et IE9
#4127: Apply realpath on metrics path and status path.
#4130: Web installation and MySQL 5.5.x failed
#4133: Time periods configuration.
#4134: Tactical overview - unhandled service problems missing
#4136: init.d/centcore probleme VERBOSE
#4137: Probleme Wizard Centreon-Broker
#4138: [ldap] Auto-import bug
#4139: service generation hangs due to duplicate key in index_data
#4140: meta_host- uninitialized variable used in query
#4141: ldap special characters on displayname - import and update
#4142: Meta service generation hangs
#4147: Connector generation error.
#4152: ldap account
#4153: PHP problem within tacticalOverviewXml.php
#4155: Possible duplicated lines in the same function
#4157: Conflict about host relationships in configuration
#4159: Broker: use short and long output from the output field
#4163: [ldap] always auto-import mode on
#4164: Alert user when he's trying to set parents relationship between hosts from different pollers
#4166: Probleme Affichage Tactical Overview
#4168: interval_length introuvable dans le Default Nagios.cfg
#4178: warning messages when generating Centreon Broker configuration
#4192: [Esthetic] Tactical Overview Criticality column size
#4196: Integer=0 Criticality level : icon not displayed
#4198: [acl] Issue category filter
#4202: Administration > Sessions : "page view" field when calling Centreon via API
#4209: Little mistake in downtime creation form
#4213: Argument overload
#4217: Surcharge de service
#4228: not more than 100 Pollers shown
#4229: Infinite loop when php-pear is missing
#4232: Bouton EventLog de la page monitoring fonctionne mal
## Centreon 2.4.0
Enhancements
============
#4041: Footer must be update for 2013
#4008: Centreon allows to disable front-end access for all administrators
#3989: logAnalyser for table 'logs'
#3986: New page to list connector.
#3984: Add rules in broker config form
#3982: Daemon core dumps work only with nagios.
#3980: Refactoring text for centreon-broker configuration.
#3974: Clean button meaning
#3964: New field for sql module
#3963: New field for file module.
#3955: "New broker configuration, add temporary endpoint."
#3946: Add warning on installer if innodb engine on MySQL is not well configured
#3940: Merge centTrapHandler and centTrapHandlerForPoller
#3938: Add another button in order to delete a downtime
#3933: [new poller] Wrong values when selecting a monitoring engine
#3918: Add Service description as a macro in centTrapHandler
#3917: Check log files rights during install process
#3913: Pending status is non-ok or ok ?
#3909: Set Correct options by default when user add a new main file
#3908: Widget display are not fully optimize
#3907: Improve Downtime page in order to add filters
#3903: Release Widgets API Documentation
#3900: "Change ""Default timezone"" to ""Default host timezone"" in Administration -> Options"
#3895: Better name for reload time in ajaxStatusCounter.js.php
#3889: formPurgePolicy.php still used ?
#3884: Ability to specify a start date when parsing log archives
#3882: Optimize Configuration Files Export
#3880: dashboardbuilder consumes too much resources for MySQL
#3879: Change Documentation For Centreon 2.4.
#3851: Some ACL constraints aren't matched with Custom Views
#3847: New Broker parameter for the graph rebuild: rebuild_check_interval
#3835: Open links to monitoring engine documentation in new tabs
#3830: Audit logs option: active
#3828: Improve Poller Listing
#3827: Add support for random colors in curves
#3826: "Add Field ""check_replication"" for broker configuration"
#3823: Align blocks in Centreon -> About
#3815: Print total value in legend
#3802: Alert for event_broker_options not equal to -1
#3801: Broker stats add problem
#3798: Broker configuration form must check mandatory parameters
#3797: Use a global value for interval lenght
#3796: event_broker_options can not be NULL
#3794: Move parameter rrd_retention from broker to general options form
#3793: Move parameter interval_lenght from broker to general options form
#3788: [Virtual metrics] Add comment when error
#3725: Rename Sheduling Engine => Monitoring Engine in Centreon menus
#3722: Port centTrapHandler changes into centTrapHandlerForPoller
#3709: Installation script update
#3680: Bug checkbox nagios.cfg
#3673: Broker : handle rrdcached configuration parameters
#3661: Centreon Broker 'monitoring' logging type
#3660: max_size for Broker logger
#3625: Empty help field for some tabs in Administration > ACL > Ressources Access menu
#3624: DELETE SNMPTT section in Administration > Options > SNMP
#3584: Possibility to translate all string
#3568: New criticity object
#3565: Modify web installer for new features
#3556: [centcore] Reload configuration file
#3544: Add possibility to configure centcore behavior from GUI
#3543: Add possibility to get traps parameters by OID
#3542: Add Logs into CentTrapHandler
#3531: Integration of Broker's stats module
#3529: Intégration des transactions (broker) dans Centreon
#3521: Engine Integration: add connector class for managing connectors
#3520: Engine Integration: add connectors compatibility to configuration generation routine
#3519: Engine Integration: update database for using Centreon Engine connectors
#3518: Update links and message on step.php files
#3508: Add possibility to get Monitoring Engine type and version
#3506: Engine Integration: modify command configuration page
#3505: Engine Integration: add connectors management pages
#3492: Add help tooltips for all form fields
#3489: Add pollers with Centreon Broker
#3488: Centreon Broker in Central with pollers
#3487: Create base wizard for Centreon Broker
#3486: Centreon Broker in Central without pollers
#3471: "Remove ""IP Address / DNS"" field in host massive change form"
#3454: Add wizards for Centreon Broker
#3452: Different system username on pollers and centreon || Nom d'utilisateur système différent sur les pollers et sur le centreon
#3443: Centreon must remove old reporting datas
#3440: centTrapHandler-2.x stop if first trap definition doesn't have external command
#3418: "Replace ""Nagios"" to ""scheduler"" in Centreon"
#3411: Checkup system for modules
#3389: [monitoring] popup display
#3351: Possibility to link host categories to host from host configuration form
#3303: "[censtorage] cleanup, perf optimization"
#3227: macro @TRAPNAME@ for external command in CentTrapHandler
#3178: Update LDAP users' profiles on login action
#3144: "[centstorage] processus manage, stop, zombie"
#2991: Configure Connectors in Centreon
#2983: Possiblity to handle multiple ldap/ad servers with different structures
#2980: C-Engine as Default Engine list
#2978: LDAP : new option for storing password in database
#2822: Customized Centreon / Tactical Overview
#2668: contact form - contact template labels
#2630: Ajout de la possibilité de personnaliser le resource.cfg et cgi.cfg par poller
#2502: disabled services show up too
#2398: Include DNS resolving in host configuration page
#2250: Autorefresh new added Host/Service Downtimes
#2234: Configuration> Nagios> Snmp traps to Configuration> snmptt
#2196: Sync SNMPTrap files to nagios satellite
#2170: Class CentreonACL update
#2143: Add logrotate entry for logs
#1995: Context-aware help in Administration
#1994: Context-aware help in graphs configuration
#1962: [EN] Add hostgroup filter in Configuration / Services | [FR] Ajout d'un filtre par hostgroup dans la partie configuration / services
#1871: New options in Nagios 3.2
#1856: Alert user when he try to move one host on another poller and if host parent are on old poller
#1853: Possibility to view configuration when not authorised to modify it
#1761: Ajout de plusieurs accès LDAP
#1735: Création de metric de type 'virtuel' : manipulation des options CDEF et VDEF de RRDTOOL
#1734: Unreachable Hosts and linked services no more considerated as Unhandled
#1730: Another Snmptraps optimization
#1617: SNMP Traps registration
Bug fixes
=========
#4042: Unexpected ack behavior
#4031: Hôte sans adresse IP
#4030: index data not created for multiple services
#4029: redémarrage du service broker lors de la génération de la configuration
#4027: servicegroup relation duplicated on service detach
#4025: centcore
#4023: Missing resources on duplicate monitoring engine.
#4018: Downtime listing forms are broken
#4017: [rrd rebuild] Can't rebuild a single metric of a service
#4014: External commands can be sent multiple times
#4013: Search function in Configuration > Services
#4011: Centcore Options
#4004: ACL are not applied on comments in Monitoring > Services > Comments
#4003: Reporting > Dashboard > incorrect values for scheduled downtime
#4001: Add poller wrong path
#3997: Centcore PID
#3994: Monitoring pages and graph icon (centreon-broker)
#3992: "autologin, graph and ACL"
#3985: "Get broker statistic, ssh failed."
#3981: "Broker configuration, compresion level."
#3979: Poller name empty
#3977: Menu ACL link empty
#3975: autologin link weird behaviour
#3969: Monitoring engines pages
#3966: nagiosPerfTrace and lock system
#3962: Databases not created during the php phase setup
#3960: "Virtual Metrics created, but should not because there is an error in RPN function"
#3953: error install.sh on upgrade
#3949: "error ""Could not find macro $USER1$"" while testing plugin"
#3947: Impossible de paramétrer un serveur LDAP
#3944: "COUNTER & Centreon-Broker, 2.4, meta-services => KO"
#3943: Default acknowledgment options are not used in service details page
#3932: [ACL] views -> graph tree view
#3930: PHP notice during upgrade
#3929: no poller in configuration-->centreon menu
#3928: error DB-Func.php
#3927: Undefined variable: classdir in /usr/share/centreon/www/index.php on line 56
#3922: One session created per Export API call ?
#3920: Tree view takes too long to load when ACL is involved
#3919: Logrotate warning
#3916: Problem with monitoring engine statistics
#3911: Initiale State logging option must be enabled for the dashboard module
#3910: Internet Explorer menu dissapears
#3906: No error when trying to generate configuration for a poller without main.cfg
#3902: double entry for logAnalyser in DB
#3896: Add force download HTTP header when exporting event logs to XML
#3894: Missing help definition in componentTemplates/help.php
#3892: Graph navigation not working properly when server's timezone is not GMT/UTC
#3888: Fix problem with service by HG in downtime view
#3887: DowntimeManager.php do not manager service by hostgroups
#3886: "field ""Inherits Parent"" are always not set when we add a dependancy"
#3885: Unable to configure dependancy based on service by hostgroup
#3883: Can't fill admin e-mail field with «root@local*»
#3878: Centcore cannot exit when MySQL DB is down
#3877: Unable to set recurrent downtines to a service link to a hostgroup
#3875: Graph navigation not working properly when timezone management is enabled
#3873: Invalid *RRD length* option when generating broker configuration
#3872: Graphs loaded twice when hovering over the graphs icon in services monitoring page
#3870: JavaScript parse error with time zones if user timezone offset is null
#3865: Graph data not positioned correctly on monitoring engines statistics graphs when timezone management is enabled
#3864: Graph data not positioned correctly on all graphs when timezone management is enabled
#3862: inheritance between contact and contact template
#3860: Massive change on contacts template doesn't work
#3859: contacts are not generated
#3855: No help in Centreon Broker configuration when display existing configuration
#3853: incorrect limit service in monitoring
#3844: Centreon is restarting monitoring engine even when configuration files can't be moved
#3843: Pending filter on Unhandled Problems view dosn't work.
#3842: Cannot set ACL rules on hidden pages
#3840: Problem with locks in centAcl.php
#3837: Running logAnalyser -h blocks next execution of the process
#3834: Wrong rights on centreon plugins
#3831: Curve legend name not applied
#3829: Correct Centreon audit logs
#3821: Update centreon 2.4 : cgi is orphan
#3820: RRDTOOL graphs unit display
#3819: Monitoring status filter - incorrect default value
#3816: Some graph are not displayed after upgrade (2.1.6->2.3.9)
#3814: [centAcl] Exist
#3809: Files Generating crash
#3808: wrong path in process-service-perfdata plugin
#3807: check centstorage status during install process
#3806: Centcore error log : Cannot restart SNMPTT for poller
#3795: Menu with popup activated doesn't work as expected
#3787: [Virtual metrics] Are not enable at creation
#3784: Service group membership being messed up after editing service
#3780: Some search results in Views > Graphs shows hosts with no services
#3779: CentStorage default script installed FAIL
#3778: centcore.default not found on Debian during install process
#3775: PHP errors when changing host templates
#3769: "Disable, TopCounter Service and Service Monitoring"
#3761: Resources not assigned to a poller
#3752: Differences in database schema between an update and a fresh install
#3750: Message error not handle when move files
#3728: Bug with Split Components
#3726: Update Documentation Link to centreon-engine one
#3724: Event log order
#3702: Erreur sur le nombre de service acquitté avec Centreon 2.3.9 et Centreon-Broker dans Tactical Overview
#3697: Centcore does not check if engine configuration file is enabled...
#3691: ACL: Services categories doesn't make restriction on services groups
#3690: "centstorage initscript, using a new tool not install by default on debian"
#3689: "Installer, Centreon Connectors directory not created"
#3685: Errors in insertBaseConf.sql
#3675: "Criticality is not saved in ""Monitoring "" filters"
#3674: Pear-DB not necessary for Centreon
#3670: Hostgroup filter not working properly in Monitoring -> Hosts -> host Groups
#3667: Invalid label for status_file.
#3663: LDAP import not working for more than one checked user
#3657: Meta Service n'affiche pas son graphique
#3650: No possibility to enable/desable virtual metrics
#3649: Incorrect log file for virtual metrics debug
#3648: Unable to change curves color
#3642: Monitoring Engine Statistics doesn't work with Centreon Engine
#3639: Mistake in purgeLogs cron
#3620: Hostgroup filter not working properly in Service Summary/Grid pages
#3615: Bug avec IE7/8
#3614: Pagination into configuration
#3613: filter on host into service configuration.
#3596: Wrong redirection with char # in hostnames
#3594: Renamed poller shows not running
#3593: Bad value for Centreon directory
#3592: service detail page with centreon broker is slow
#3590: Too many informations in table 'log'
#3587: Add full description for CB field in database
#3586: Wrong syntax for MySQL in insertBaseConf.sql script
#3585: Column cfg_file is missing on cfg_nagios table
#3572: "[Centreon] bad label in "" Monitoring > Event Logs"""
#3571: Broken image in host/service ext info tab
#3569: Skip deprecated/ignored fields when generating configuration files for Centreon Engine
#3563: Links for export buttons next to graphs do not pass the correct parameters to the data export script
#3562: Pending states in Tactical Overview
#3558: "Parsing failed when testing ""nagios"" configuration with Centreon Engine"
#3555: Monitoring / Hostgroups / Services Status : wrong numbers ?
#3553: Apache error logs - 2.3.8
#3550: Graphs metric box is not fully grey
#3549: Meta Services metrics order
#3540: Code execution MIB Upload
#3539: Error on SNMP-Disk-C
#3537: Html page not well formed: DB not connected
#3534: Traduction : chaines intraduisibles + pb d'encoding
#3530: Hostgroup filter not working properly in Service Summary/Grid pages
#3507: Engine Integration: add possibility to enable shell for specifics commands
#3504: Unable to install Centreon on RHEL 6
#3503: JS typo
#3498: Bad use of field last_execution_time in logAnalyzer
#3482: Génération des fichiers
#3481: Creating new curves - List of known metrics
#3475: Menu tree incorrect for serviceand host details page
#3474: Nagios default option in new create nagios.cfg
#3472: Images Directory should not require in monitoring form
#3467: Supervision > Services : page blanche
#3463: Modification par un administrateur d'un contact issue d'un groupe LDAP
#3462: Probleme indentation fichier centreon-purge.log
#3451: Suppression des commentaires impossibles
#3448: Forbidden links displayed
#3442: [logAnalyser] Date in log and lock system
#3438: Affichage configuration / services
#3427: CSS problem when action-url is provided
#3422: "Ne peut pas afficher les services"" Pending"""
#3397: Affichage de la description du groupe d'hôtes à la place de son nom
#3363: [Events log] Bug error_log
#3357: probleme script logAnalyzer after update centreon
#3353: Host Downtime cannot be deleted.
#3310: LDAP - users import
#3279: problem with plugins in /tmp during install
#3265: [graph] Special metrics and broker
#3230: [centreon] curve's labels do not support non-us characters
#3201: Configuration breadcrumb not update.
#3198: [ACL] User template and contact group : doesn't woking together
#3163: Configuration>Nagios>Export ne prend pas en compte les modules de Centreon Broker
#3161: Bug affichage Supervision -> Hotes
#3153: [centstorage] perfdata name and special character
#3124: ACL Ignored in Configuration > Commands > Checks
#3121: Wrong database name for centreon-broker default config
#3082: Ordre des personnes connectés (vu uniquement que par les administrateurs)
#2913: Centreon 2.3.3 Unable to view event logs
#2911: New metric not visible
#2905: possibilité d'afficher des graphiques alors que pas de graphiques générés
#2835: Bad name in perfdata
#2800: CSV timestamp only in Unixtime @ Views -> Graphs
#2779: "Centstorage, bad handle of specials chars in perfdata"
#2717: Enhancement #2105 does not work
#2680: sql injection detection too restrictive/naive code
#2656: Double compte admin lors de l'installation
#2454: Monitoring -> Hosts -> Host Groups : show more hosts groups than the user have rights
#2382: everything at the GUI is duplicated?
#2327: Monitoring Services Mouseover Popup: bottom not visible
#2209: Centstorage overwrites service-perfdata with performance data from the poller
#2164: Génération des statistiques Nagios
#2158: Bug lors de mise à jour
#2059: Hosts without service are not listed on the monitoring page
#1904: Pending services not shown
#1878: Problem when using \t in Service Performance Data File Template
#1834: Host overview doesn't sort IP Addresses not naturally
#1583: Meta Service Problem
#1512: Suppression commentaire dans page monitoring
#1469: Errors when adding menu items with entry in toplevel menu
#1388: HostGroup SNMP Version don't generate nagios config entries
#4042: Unexpected ack behavior
#4031: Hôte sans adresse IP
#4030: index data not created for multiple services
#4029: redémarrage du service broker lors de la génération de la configuration
#4027: servicegroup relation duplicated on service detach
#4025: centcore
#4023: Missing resources on duplicate monitoring engine.
#4018: Downtime listing forms are broken
#4017: [rrd rebuild] Can't rebuild a single metric of a service
#4014: External commands can be sent multiple times
#4013: Search function in Configuration > Services
#4011: Centcore Options
#4004: ACL are not applied on comments in Monitoring > Services > Comments
#4003: Reporting > Dashboard > incorrect values for scheduled downtime
#4001: Add poller wrong path
#3997: Centcore PID
#3994: Monitoring pages and graph icon (centreon-broker)
#3992: "autologin, graph and ACL"
#3985: "Get broker statistic, ssh failed."
#3981: "Broker configuration, compresion level."
#3979: Poller name empty
#3977: Menu ACL link empty
#3975: autologin link weird behaviour
#3969: Monitoring engines pages
#3966: nagiosPerfTrace and lock system
#3962: Databases not created during the php phase setup
#3960: "Virtual Metrics created, but should not because there is an error in RPN function"
#3953: error install.sh on upgrade
#3949: "error ""Could not find macro $USER1$"" while testing plugin"
#3947: Impossible de paramétrer un serveur LDAP
#3944: "COUNTER & Centreon-Broker, 2.4, meta-services => KO"
#3943: Default acknowledgment options are not used in service details page
#3932: [ACL] views -> graph tree view
#3930: PHP notice during upgrade
#3929: no poller in configuration-->centreon menu
#3928: error DB-Func.php
#3927: Undefined variable: classdir in /usr/share/centreon/www/index.php on line 56
#3922: One session created per Export API call ?
#3920: Tree view takes too long to load when ACL is involved
#3919: Logrotate warning
#3916: Problem with monitoring engine statistics
#3911: Initiale State logging option must be enabled for the dashboard module
#3910: Internet Explorer menu dissapears
#3906: No error when trying to generate configuration for a poller without main.cfg
#3902: double entry for logAnalyser in DB
#3896: Add force download HTTP header when exporting event logs to XML
#3894: Missing help definition in componentTemplates/help.php
#3892: Graph navigation not working properly when server's timezone is not GMT/UTC
#3888: Fix problem with service by HG in downtime view
#3887: DowntimeManager.php do not manager service by hostgroups
#3886: "field ""Inherits Parent"" are always not set when we add a dependancy"
#3885: Unable to configure dependancy based on service by hostgroup
#3883: Can't fill admin e-mail field with «root@local*»
#3878: Centcore cannot exit when MySQL DB is down
#3877: Unable to set recurrent downtines to a service link to a hostgroup
#3875: Graph navigation not working properly when timezone management is enabled
#3873: Invalid *RRD length* option when generating broker configuration
#3872: Graphs loaded twice when hovering over the graphs icon in services monitoring page
#3870: JavaScript parse error with time zones if user timezone offset is null
#3865: Graph data not positioned correctly on monitoring engines statistics graphs when timezone management is enabled
#3864: Graph data not positioned correctly on all graphs when timezone management is enabled
#3862: inheritance between contact and contact template
#3860: Massive change on contacts template doesn't work
#3859: contacts are not generated
#3855: No help in Centreon Broker configuration when display existing configuration
#3853: incorrect limit service in monitoring
#3844: Centreon is restarting monitoring engine even when configuration files can't be moved
#3843: Pending filter on Unhandled Problems view dosn't work.
#3842: Cannot set ACL rules on hidden pages
#3840: Problem with locks in centAcl.php
#3837: Running logAnalyser -h blocks next execution of the process
#3834: Wrong rights on centreon plugins
#3831: Curve legend name not applied
#3829: Correct Centreon audit logs
#3821: Update centreon 2.4 : cgi is orphan
#3820: RRDTOOL graphs unit display
#3819: Monitoring status filter - incorrect default value
#3816: Some graph are not displayed after upgrade (2.1.6->2.3.9)
#3814: [centAcl] Exist
#3809: Files Generating crash
#3808: wrong path in process-service-perfdata plugin
#3807: check centstorage status during install process
#3806: Centcore error log : Cannot restart SNMPTT for poller
#3795: Menu with popup activated doesn't work as expected
#3787: [Virtual metrics] Are not enable at creation
#3784: Service group membership being messed up after editing service
#3780: Some search results in Views > Graphs shows hosts with no services
#3779: CentStorage default script installed FAIL
#3778: centcore.default not found on Debian during install process
#3775: PHP errors when changing host templates
#3769: "Disable, TopCounter Service and Service Monitoring"
#3761: Resources not assigned to a poller
#3752: Differences in database schema between an update and a fresh install
#3750: Message error not handle when move files
#3728: Bug with Split Components
#3726: Update Documentation Link to centreon-engine one
#3724: Event log order
#3702: Erreur sur le nombre de service acquitté avec Centreon 2.3.9 et Centreon-Broker dans Tactical Overview
#3697: Centcore does not check if engine configuration file is enabled...
#3691: ACL: Services categories doesn't make restriction on services groups
#3690: "centstorage initscript, using a new tool not install by default on debian"
#3689: "Installer, Centreon Connectors directory not created"
#3685: Errors in insertBaseConf.sql
#3675: "Criticality is not saved in ""Monitoring "" filters"
#3674: Pear-DB not necessary for Centreon
#3670: Hostgroup filter not working properly in Monitoring -> Hosts -> host Groups
#3667: Invalid label for status_file.
#3663: LDAP import not working for more than one checked user
#3657: Meta Service n'affiche pas son graphique
#3650: No possibility to enable/desable virtual metrics
#3649: Incorrect log file for virtual metrics debug
#3648: Unable to change curves color