Querying Veeam Service Provider Console Server Metrics
To display data, Grafana queries Veeam Service Provider Console server metrics by fetching them from the measurements using the InfluxQL or Flux statements and optionally filtering or grouping them by tags.
You can fetch a specific metric from an external application. To do that, use a query similar to the following:
-- most recent value SELECT last("vspc.statistic.alarms_total_active_count") FROM "prometheus"; |
If you want to customize a Grafana panel with a specific metric, use a query similar to the following:
SELECT last("vspc.statistic.alarms_total_active_count") FROM "prometheus" WHERE $timeFilter GROUP BY time($__interval) FILL(previous); |