managers_metrics
Creates, updates, deletes, gets or lists a managers_metrics
resource.
Overview
Name | managers_metrics |
Type | Resource |
Id | azure_extras.storsimple_1200_series.managers_metrics |
Fields
The following fields are returned by SELECT
queries:
- list
The collection of metrics.
Name | Datatype | Description |
---|---|---|
name | object | The name of the metrics |
dimensions | array | The Metric dimension which indicates the source of the metric |
endTime | string (date-time) | The metric end time |
primaryAggregation | string | The metric aggregation type |
resourceId | string | The id of metric source |
startTime | string (date-time) | The metric start time |
timeGrain | string | The time grain, time grain indicates frequency of the metric data |
type | string | The Type of the metric data |
unit | string | The unit of the metric data |
values | array | The metric data |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , managerName | $filter | Gets the manager metrics |
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 |
$filter | string | OData Filter options |
SELECT
examples
- list
Gets the manager metrics
SELECT
name,
dimensions,
endTime,
primaryAggregation,
resourceId,
startTime,
timeGrain,
type,
unit,
values
FROM azure_extras.storsimple_1200_series.managers_metrics
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
AND $filter = '{{ $filter }}'
;