Python
import requests url = "https://{FUSION HOST}/api/system/metricNames" response = requests.get(url) print(response.text)
{ "gauges": [ "mem.heap.committed", "mem.heap.init", "mem.heap.max", "mem.heap.usage", "mem.heap.used" ], "counters": [], "histograms": [], "meters": [], "timers": [] }
For use with the ‘metric’ endpoint.
A regular expression to find all configuration items that contain matching strings.
Match all configuration items that start with the specified string.
successful operation
Was this page helpful?