services_metrics_sums
Creates, updates, deletes, gets or lists a services_metrics_sums
resource.
Overview
Name | services_metrics_sums |
Type | Resource |
Id | azure.ad_hybrid_health_service.services_metrics_sums |
Fields
The following fields are returned by SELECT
queries:
- list
The list of metrics for a given service.
Name | Datatype | Description |
---|---|---|
key | string | The key for the property. |
value | string | The value for the key. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | serviceName , metricName , groupName | Gets 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.
Name | Datatype | Description |
---|---|---|
groupName | string | The group name |
metricName | string | The metric name |
serviceName | string | The name of the service. |
SELECT
examples
- list
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
;