Francesco Romani has uploaded a new change for review. Change subject: config: set monitoring interval to match VDSM one ......................................................................
config: set monitoring interval to match VDSM one The default monitoring interval in VDSM is 15s. Change the defaults to match this rate, in order to reduce the system load without compromising the MOM effectiveness. Change-Id: I39f753c64a29890c42f84aac520c5477629fe9c6 Signed-off-by: Francesco Romani <[email protected]> --- M doc/mom-balloon+ksm.conf M doc/mom-balloon.conf M mom/__init__.py 3 files changed, 6 insertions(+), 6 deletions(-) git pull ssh://gerrit.ovirt.org:29418/mom refs/changes/48/41148/1 diff --git a/doc/mom-balloon+ksm.conf b/doc/mom-balloon+ksm.conf index 8dfb053..4b5c930 100644 --- a/doc/mom-balloon+ksm.conf +++ b/doc/mom-balloon+ksm.conf @@ -3,10 +3,10 @@ main-loop-interval: 5 # The data collection interval for host statistics (in seconds) -host-monitor-interval: 5 +host-monitor-interval: 15 # The data collection interval for guest statistics (in seconds) -guest-monitor-interval: 5 +guest-monitor-interval: 15 # The wake up frequency of the guest manager (in seconds). The guest manager # sets up monitoring and control for newly-created guests and cleans up after diff --git a/doc/mom-balloon.conf b/doc/mom-balloon.conf index 1ddcd6b..a7ffee5 100644 --- a/doc/mom-balloon.conf +++ b/doc/mom-balloon.conf @@ -3,10 +3,10 @@ main-loop-interval: 5 # The data collection interval for host statistics (in seconds) -host-monitor-interval: 5 +host-monitor-interval: 15 # The data collection interval for guest statistics (in seconds) -guest-monitor-interval: 5 +guest-monitor-interval: 15 # The wake up frequency of the guest manager (in seconds). The guest manager # sets up monitoring and control for newly-created guests and cleans up after diff --git a/mom/__init__.py b/mom/__init__.py index 0fb962d..be05430 100644 --- a/mom/__init__.py +++ b/mom/__init__.py @@ -81,10 +81,10 @@ # Set built-in defaults self.config.add_section('main') self.config.set('main', 'main-loop-interval', '5') - self.config.set('main', 'host-monitor-interval', '5') + self.config.set('main', 'host-monitor-interval', '15') self.config.set('main', 'guest-manager-interval', '5') self.config.set('main', 'hypervisor-interface', 'libvirt') - self.config.set('main', 'guest-monitor-interval', '5') + self.config.set('main', 'guest-monitor-interval', '15') self.config.set('main', 'policy-engine-interval', '10') self.config.set('main', 'sample-history-length', '10') self.config.set('main', 'libvirt-hypervisor-uri', '') -- To view, visit https://gerrit.ovirt.org/41148 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I39f753c64a29890c42f84aac520c5477629fe9c6 Gerrit-PatchSet: 1 Gerrit-Project: mom Gerrit-Branch: master Gerrit-Owner: Francesco Romani <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
