From 5aa522908264b5ef97387821e18c13ad9a9b95a1 Mon Sep 17 00:00:00 2001 From: Monsyne Dragon Date: Fri, 30 Sep 2011 00:39:46 +0000 Subject: Adds more usage data to Nova's usage notifications. Adds in bandwidth, state and IP data on standard notifications, and new notifications on add/remove IP. These were missing before, and are needed to meet spec. This fixes bug 849117 Change-Id: Ie586ff3a91a56e5f5eff8abc6905ba6a0b624451 --- nova/flags.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'nova/flags.py') diff --git a/nova/flags.py b/nova/flags.py index 58e8570b1..0b6e07af0 100644 --- a/nova/flags.py +++ b/nova/flags.py @@ -406,6 +406,10 @@ DEFINE_list('zone_capabilities', 'Key/Multi-value list representng capabilities of this zone') DEFINE_string('build_plan_encryption_key', None, '128bit (hex) encryption key for scheduler build plans.') +DEFINE_string('instance_usage_audit_period', 'month', + 'time period to generate instance usages for.') +DEFINE_integer('bandwith_poll_interval', 600, + 'interval to pull bandwidth usage info') DEFINE_bool('start_guests_on_host_boot', False, 'Whether to restart guests when the host reboots') -- cgit