prometheus_host = os.environ.get('OSM_HOSTNAME')
prometheus_port = '9091'
+# Prometheus polling interval and retries
+prometheus_poll_retries = '15 times'
+prometheus_poll_timeout = '1 minute'
# Prometheus metrics to retrieve
metric_1_name = 'osm_cpu_utilization'
metric_2_name = 'osm_average_memory_utilization'
prometheus_host = os.environ.get('OSM_HOSTNAME')
prometheus_port = '9091'
+# Prometheus polling interval and retries
+prometheus_poll_retries = '15 times'
+prometheus_poll_timeout = '1 minute'
# Prometheus metric and threshold
metric_name = 'osm_cpu_utilization'
metric_threshold = 60
prometheus_host = os.environ.get('OSM_HOSTNAME')
prometheus_port = '9091'
+# Prometheus polling interval and retries
+prometheus_poll_retries = '15 times'
+prometheus_poll_timeout = '1 minute'
# Webhook Service NS and VNF descriptor package folder
ws_vnfd_pkg = 'hackfest_basic_vnf'
ws_nsd_pkg = 'hackfest_basic_ns'
Get VNF VIM-based Metrics
[Tags] vnf_vim_metrics sanity regression
+ Variable Should Exist ${prometheus_poll_retries} msg=Metric polling retries is not available
+ Variable Should Exist ${prometheus_poll_timeout} msg=Metric polling timeout is not available
Variable Should Exist ${prometheus_host} msg=Prometheus address is not available
Variable Should Exist ${prometheus_port} msg=Prometheus port is not available
Variable Should Exist ${metric_1_name} msg=Prometheus first metric name is not available
Variable Should Exist ${metric_2_name} msg=Prometheus second metric name is not available
- ${metric_1_value}= Wait Until Keyword Succeeds 6 times 2 minutes Get Metric ${prometheus_host} ${prometheus_port} ${metric_1_name}
+ ${metric_1_value}= Wait Until Keyword Succeeds ${prometheus_poll_retries} ${prometheus_poll_timeout} Get Metric ${prometheus_host} ${prometheus_port} ${metric_1_name}
Run Keyword Unless ${metric_1_value} > 0 Fail msg=The metric '${metric_1_name}' value is '${metric_1_value}'
- ${metric_2_value}= Wait Until Keyword Succeeds 6 times 2 minutes Get Metric ${prometheus_host} ${prometheus_port} ${metric_2_name}
+ ${metric_2_value}= Wait Until Keyword Succeeds ${prometheus_poll_retries} ${prometheus_poll_timeout} Get Metric ${prometheus_host} ${prometheus_port} ${metric_2_name}
Run Keyword Unless ${metric_2_value} > 0 Fail msg=The metric '${metric_2_name}' value is '${metric_2_value}'
Get VNF VIM-based Metric Before Auto-scaling
[Tags] vnf_vim_metrics_autoscaling sanity regression
+ Variable Should Exist ${prometheus_poll_retries} msg=Metric polling retries is not available
+ Variable Should Exist ${prometheus_poll_timeout} msg=Metric polling timeout is not available
Variable Should Exist ${prometheus_host} msg=Prometheus address is not available
Variable Should Exist ${prometheus_port} msg=Prometheus port is not available
Variable Should Exist ${metric_name} msg=Prometheus metric name is not available
- ${metric_value}= Wait Until Keyword Succeeds 6 times 2 minutes Get Metric ${prometheus_host} ${prometheus_port} ${metric_name}
+ ${metric_value}= Wait Until Keyword Succeeds ${prometheus_poll_retries} ${prometheus_poll_timeout} Get Metric ${prometheus_host} ${prometheus_port} ${metric_name}
Run Keyword Unless ${metric_value} > 0 Fail msg=The metric '${metric_name}' value is '${metric_value}'
Run Keyword Unless ${metric_value} < ${metric_threshold} Fail msg=The metric '${metric_name}' value is higher than '${metric_threshold}' before scaling
Wait VIM-based Metric To Exceed Threshold
[Tags] vnf_vim_metrics_autoscaling sanity regression
- Wait Until Keyword Succeeds 6 times 2 minutes Check VIM-based Metric Exceeds Threshold
+ Variable Should Exist ${prometheus_poll_retries} msg=Metric polling retries is not available
+ Variable Should Exist ${prometheus_poll_timeout} msg=Metric polling timeout is not available
+ Wait Until Keyword Succeeds ${prometheus_poll_retries} ${prometheus_poll_timeout} Check VIM-based Metric Exceeds Threshold
Get VDUs After Auto-scaling
Get Alarm Metric
[Tags] alarms_sa_related_vnfs sanity regression
+ Variable Should Exist ${prometheus_poll_retries} msg=Metric polling retries is not available
+ Variable Should Exist ${prometheus_poll_timeout} msg=Metric polling timeout is not available
Variable Should Exist ${prometheus_host} msg=Prometheus address is not available
Variable Should Exist ${prometheus_port} msg=Prometheus port is not available
Variable Should Exist ${metric_name} msg=Prometheus metric name is not available
- ${metric_value}= Wait Until Keyword Succeeds 6 times 2 minutes Get Metric ${prometheus_host} ${prometheus_port} ${metric_name}
+ ${metric_value}= Wait Until Keyword Succeeds ${prometheus_poll_retries} ${prometheus_poll_timeout} Get Metric ${prometheus_host} ${prometheus_port} ${metric_name}
Run Keyword Unless ${metric_value} > 0 Fail msg=The metric '${metric_name}' value is '${metric_value}'