1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-24 02:03:52 +03:00

Feature #2442: New oned.conf default values

(cherry picked from commit 4f373795ed32b0d88dc5e6999c67b87bdeaa8b6c)
This commit is contained in:
Carlos Martín 2013-11-08 15:28:19 +01:00 committed by Ruben S. Montero
parent 64bb4687eb
commit 81e28b2088
2 changed files with 6 additions and 6 deletions

View File

@ -52,13 +52,13 @@ LOG = [
#MANAGER_TIMER = 30
MONITORING_INTERVAL = 300
MONITORING_INTERVAL = 60
#HOST_PER_INTERVAL = 15
#HOST_MONITORING_EXPIRATION_TIME = 86400
#HOST_MONITORING_EXPIRATION_TIME = 43200
#VM_PER_INTERVAL = 5
#VM_MONITORING_EXPIRATION_TIME = 86400
#VM_MONITORING_EXPIRATION_TIME = 14400
SCRIPTS_REMOTE_DIR=/var/tmp/one

View File

@ -102,7 +102,7 @@ void OpenNebulaTemplate::set_conf_default()
#*******************************************************************************
*/
// MONITORING_INTERVAL
value = "300";
value = "60";
attribute = new SingleAttribute("MONITORING_INTERVAL",value);
conf_default.insert(make_pair(attribute->name(),attribute));
@ -114,7 +114,7 @@ void OpenNebulaTemplate::set_conf_default()
conf_default.insert(make_pair(attribute->name(),attribute));
// HOST_MONITORING_EXPIRATION_TIME
value = "86400";
value = "43200";
attribute = new SingleAttribute("HOST_MONITORING_EXPIRATION_TIME",value);
conf_default.insert(make_pair(attribute->name(),attribute));
@ -126,7 +126,7 @@ void OpenNebulaTemplate::set_conf_default()
conf_default.insert(make_pair(attribute->name(),attribute));
// VM_MONITORING_EXPIRATION_TIME
value = "86400";
value = "14400";
attribute = new SingleAttribute("VM_MONITORING_EXPIRATION_TIME",value);
conf_default.insert(make_pair(attribute->name(),attribute));