blob: 0f4f07c0a8ff14bf5754b2091bff1f84eee8f8f7 [file] [log] [blame]
Felipe Vicensf96bb452020-06-22 08:12:30 +02001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12
13*** Settings ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020014Documentation Library to obtain metrics from Prometheus.
Felipe Vicensf96bb452020-06-22 08:12:30 +020015
16Library String
17Library Collections
garciadeblasa79b7b52023-10-05 11:46:45 +020018Library OperatingSystem
Felipe Vicensf96bb452020-06-22 08:12:30 +020019Library RequestsLibrary
20
21
22*** Variables ***
garciadeblasf4ebaa82022-06-23 13:33:26 +020023${timeout} 30
24${max_retries} 1
garciadeblasa79b7b52023-10-05 11:46:45 +020025${prometheus_host} %{PROMETHEUS_HOSTNAME=UNKNOWN}
26${prometheus_port} %{PROMETHEUS_PORT=9090}
27${prometheus_user} %{PROMETHEUS_USER=""}
28${prometheus_password} %{PROMETHEUS_PASSWORD=""}
Felipe Vicensf96bb452020-06-22 08:12:30 +020029
30
31*** Keywords ***
garciadeblas2d4de332023-06-28 00:23:34 +020032Set Testsuite Prometheus Variables
33 [Documentation] Set Testsuite Prometheus Variables to be used in subsequent test cases
34
garciadeblasa79b7b52023-10-05 11:46:45 +020035 IF '${prometheus_host}' == 'UNKNOWN'
36 ${local_prometheus_host}= Get Environment Variable OSM_HOSTNAME
37 Set Suite Variable ${prometheus_host} ${local_prometheus_host}
38 Set Suite Variable ${prometheus_port} 9091
39 END
garciadeblas2d4de332023-06-28 00:23:34 +020040 Log ${prometheus_port}
garciadeblas2d4de332023-06-28 00:23:34 +020041 Log ${prometheus_host}
42 Log ${prometheus_user}
43 Log ${prometheus_password}
garciadeblas2d4de332023-06-28 00:23:34 +020044
45
Felipe Vicensf96bb452020-06-22 08:12:30 +020046Get Metric
garciadeblasf4ebaa82022-06-23 13:33:26 +020047 [Documentation] Get the instant value of a metric from Prometheus using multiple filter parameters.
Felipe Vicensf96bb452020-06-22 08:12:30 +020048 ... The filter parameters are given to this function in key=value format (one argument per key/value pair).
49 ... Fails if the metric is not found or has multiple values.
50 ... Examples of execution:
Guillermo Calvino063677c2022-11-21 18:13:58 +010051 ... \${metric}= Get Metric \${prometheus_ip} \${prometheus_port} ${prometheus_password} \${metric}
52 ... \${metric}= Get Metric \${prometheus_ip} \${prometheus_port} ${prometheus_password} \${metric} \${param1}=\${value1} \${param2}=\${value2}
Felipe Vicensf96bb452020-06-22 08:12:30 +020053
Guillermo Calvino063677c2022-11-21 18:13:58 +010054 [Arguments] ${prometheus_ip} ${prometheus_port} ${prometheus_user} ${prometheus_password} ${metric} @{filter_parameters}
Felipe Vicensf96bb452020-06-22 08:12:30 +020055
garciadeblasf4ebaa82022-06-23 13:33:26 +020056 ${filter}= Set Variable ${EMPTY}
57 FOR ${param} IN @{filter_parameters}
58 ${match} ${param_name} ${param_value} = Should Match Regexp ${param} (.+)=(.+) msg=Syntax error in filter parameters
59 ${filter}= Catenate SEPARATOR= ${filter} ${param_name}="${param_value}",
Felipe Vicensf96bb452020-06-22 08:12:30 +020060 END
Guillermo Calvino063677c2022-11-21 18:13:58 +010061 ${resp}= Execute Prometheus Instant Query ${prometheus_host} ${prometheus_port} ${prometheus_user} ${prometheus_password} query=${metric}{${filter}}
garciadeblasf4ebaa82022-06-23 13:33:26 +020062 ${result_list}= Convert To List ${resp["data"]["result"]}
63 ${results}= Get Length ${result_list}
64 Should Not Be Equal As Numbers 0 ${results} msg=Metric ${metric} not found values=false
65 Should Be Equal As Integers 1 ${results} msg=Metric ${metric} with multiple values values=false
66 [Return] ${result_list[0]["value"][1]}
Felipe Vicensf96bb452020-06-22 08:12:30 +020067
68
69Execute Prometheus Instant Query
garciadeblasf4ebaa82022-06-23 13:33:26 +020070 [Documentation] Execute a Prometheus Instant Query using HTTP API.
Felipe Vicensf96bb452020-06-22 08:12:30 +020071 ... Return an inline json with the result of the query.
72 ... The requested URL is the next: http://\${prometheus_ip}:\${prometheus_port}/api/v1/query?\${querystring}
73
Guillermo Calvino063677c2022-11-21 18:13:58 +010074 [Arguments] ${prometheus_ip} ${prometheus_port} ${prometheus_user} ${prometheus_password} ${querystring}
75 ${auth}= IF '${prometheus_password}'!='${EMPTY}' Create List ${prometheus_user} ${prometheus_password} ELSE Set Variable None
76 Create Session prometheus http://${prometheus_ip}:${prometheus_port} timeout=${timeout} max_retries=${max_retries} verify=false auth=${auth}
garciadeblasf4ebaa82022-06-23 13:33:26 +020077 ${resp}= GET On Session prometheus /api/v1/query?${querystring} timeout=${timeout}
78 Status Should Be 200 ${resp}
79 [Return] ${resp.json()}