adds_services_metric_metadata_for_groups
Creates, updates, deletes, gets or lists an adds_services_metric_metadata_for_groups
resource.
Overview
Name | adds_services_metric_metadata_for_groups |
Type | Resource |
Id | azure.ad_hybrid_health_service.adds_services_metric_metadata_for_groups |
Fields
The following fields are returned by SELECT
queries:
- get
The metric sets for a given service and group.
Name | Datatype | Description |
---|---|---|
sets | array | The list of metric set. |
timeStamps | array | The list of timestamps for each metric in the metric set. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | serviceName , metricName , groupName | groupKey , fromDate , toDate | Gets the service related metrics 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. |
fromDate | string (date-time) | The start date. |
groupKey | string | The group key |
toDate | string (date-time) | The end date. |
SELECT
examples
- get
Gets the service related metrics for a given metric and group combination.
SELECT
sets,
timeStamps
FROM azure.ad_hybrid_health_service.adds_services_metric_metadata_for_groups
WHERE serviceName = '{{ serviceName }}' -- required
AND metricName = '{{ metricName }}' -- required
AND groupName = '{{ groupName }}' -- required
AND groupKey = '{{ groupKey }}'
AND fromDate = '{{ fromDate }}'
AND toDate = '{{ toDate }}'
;