Skip to main content

services_metrics_sums

Creates, updates, deletes, gets or lists a services_metrics_sums resource.

Overview

Nameservices_metrics_sums
TypeResource
Idazure.ad_hybrid_health_service.services_metrics_sums

Fields

The following fields are returned by SELECT queries:

The list of metrics for a given service.

NameDatatypeDescription
keystringThe key for the property.
valuestringThe value for the key.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceName, metricName, groupNameGets the sum of the metric values for a given metric and group combination.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
groupNamestringThe group name
metricNamestringThe metric name
serviceNamestringThe name of the service.

SELECT examples

Gets the sum of the metric values for a given metric and group combination.

SELECT
key,
value
FROM azure.ad_hybrid_health_service.services_metrics_sums
WHERE serviceName = '{{ serviceName }}' -- required
AND metricName = '{{ metricName }}' -- required
AND groupName = '{{ groupName }}' -- required
;