Added a host_cpu_overload_threshold config option

This commit is contained in:
Anton Beloglazov 2012-10-17 16:26:57 +11:00
parent e7af8703db
commit 1ba9d5d8be
2 changed files with 6 additions and 0 deletions

View File

@ -75,6 +75,11 @@ data_collector_interval = 10
# placement algorithms
data_collector_data_length = 100
# The threshold on the overall (all cores) utilization of the physical
# CPU of a host, above which the host is considered to be overloaded.
# This is used for logging host overloads into the database.
host_cpu_overload_threshold = 0.95
# The user name for connecting to the compute hosts to switch them
# into the sleep mode
compute_user = neat

View File

@ -54,6 +54,7 @@ REQUIRED_FIELDS = [
'local_manager_interval',
'data_collector_interval',
'data_collector_data_length',
'host_cpu_overload_threshold',
'compute_user',
'compute_password',
'sleep_command',