managers_metric_definitions
Creates, updates, deletes, gets or lists a managers_metric_definitions
resource.
Overview
Name | managers_metric_definitions |
Type | Resource |
Id | azure_extras.storsimple_1200_series.managers_metric_definitions |
Fields
The following fields are returned by SELECT
queries:
- list
The collection of metric definitions.
Name | Datatype | Description |
---|---|---|
name | object | The metric name |
dimensions | array | The supported dimensions |
metricAvailabilities | array | The available metric granularities |
primaryAggregationType | string | The metric aggregation type |
resourceId | string | The metric source id |
type | string | The metric definition type |
unit | string | The metric unit |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , managerName | Retrieves metric definition of all metrics aggregated at manager. |
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 |
---|---|---|
managerName | string | The manager name |
resourceGroupName | string | The resource group name |
subscriptionId | string | The subscription id |
SELECT
examples
- list
Retrieves metric definition of all metrics aggregated at manager.
SELECT
name,
dimensions,
metricAvailabilities,
primaryAggregationType,
resourceId,
type,
unit
FROM azure_extras.storsimple_1200_series.managers_metric_definitions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;