Fix whitespace issues in Python files
[demo.git] / vnfs / DAaaS / sample-apps / m3db_promql / build / sample_promql_query.py
1 # -------------------------------------------------------------------------
2 #   Copyright (c) 2019 Intel Corporation Intellectual Property
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # -------------------------------------------------------------------------
17
18
19 from promql_api.prom_ql_api import query
20 from promql_api.prom_ql_api import query_range
21 import pprint
22
23 QUERY_STRING = ['irate(collectd_cpufreq{exported_instance="otconap7",cpufreq="1"}[2m])']
24 MAP_OF_PARAMETERS = {'query': 'up', 'start': '2019-06-19T20:10:30.781Z', 'end': '2019-06-19T20:10:45.781Z', 'step': '15s'}
25
26 #Other examples
27 #QUERY_STRING = [ 'irate(http_requests_total{code="200"}[1m])', 'collectd_cpu_percent{job="collectd", exported_instance="otconap7"}[1m]' ]
28 #QUERY_STRING = ['irate(collectd_cpufreq{exported_instance="otconap7",cpufreq="1"}[2m])', 'go_info']
29 #MAP_OF_PARAMETERS = {'query': 'up', 'start': '2019-06-19T20:10:30.781Z', 'end': '2019-06-19T20:10:45.781Z', 'step': '15s', 'timeout':'600s'}
30
31 def demo_query():
32         list_of_result_sets = query(QUERY_STRING)
33         if list_of_result_sets:
34                 for each_result in list_of_result_sets:
35                     pprint.pprint(each_result)
36
37 def demo_query_range():
38         list_of_result_sets = query_range(MAP_OF_PARAMETERS)
39         pprint.pprint(list_of_result_sets)
40
41
42 def main():
43         demo_query()
44         demo_query_range()
45
46
47 if __name__ == "__main__":
48         main()