We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A client only needs to be able to retrieve data using the REST JSON API.
This can be done, e.g., as shown below.
#!/usr/bin/env python3 import requests apicall = "http://midas_dispatcher:8080/example_node_A/metric/{"type":"metric_a","channels":["Ch1"], "time_window":[10,5], "arguments":[1,3]}" r = requests.get(apicall) result = r.json print(str(result))