Forum Discussion
Mosh
8 years agoProfessor
@dmartzall If the ServiceNow metrics are available via the ServiceNow REST API, you could make a simple Groovy script data source to pull the metrics via a REST call, then parse out the JSON into data points.
getData = new URL('https://' + account + '.service-now.com/api/now/<...api query string.....>').getText();
response = new JsonSlurper().parseText(getData);
metricValue = response.data.<some object>
Related Content
- 2 months ago
- 4 months ago
- 4 months ago