Skip to main content

services_metrics_averages

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

Overview

Nameservices_metrics_averages
TypeResource
Idazure.ad_hybrid_health_service.services_metrics_averages

Fields

The following fields are returned by SELECT queries:

The list of average 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 average 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 average of the metric values for a given metric and group combination.

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