Skip to main content

volumes_metrics

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

Overview

Namevolumes_metrics
TypeResource
Idazure_extras.storsimple_8000_series.volumes_metrics

Fields

NameDatatypeDescription
nameobjectThe metric name.
dimensionsarrayThe metric dimensions.
endTimestringThe end time of the metric data.
primaryAggregationstringThe metric aggregation type.
resourceIdstringThe ID of metric source.
startTimestringThe start time of the metric data.
timeGrainstringThe time granularity of the metric data.
typestringThe type of the metric data.
unitstringThe unit of the metric data.
valuesarrayThe list of the metric data.

Methods

NameAccessible byRequired ParamsDescription
listSELECT$filter, deviceName, managerName, resourceGroupName, subscriptionId, volumeContainerName, volumeNameGets the metrics for the specified volume.

SELECT examples

Gets the metrics for the specified volume.

SELECT
name,
dimensions,
endTime,
primaryAggregation,
resourceId,
startTime,
timeGrain,
type,
unit,
values
FROM azure_extras.storsimple_8000_series.volumes_metrics
WHERE $filter = '{{ $filter }}'
AND deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND volumeContainerName = '{{ volumeContainerName }}'
AND volumeName = '{{ volumeName }}';