Skip to main content

volume_containers_metrics

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

Overview

Namevolume_containers_metrics
TypeResource
Idazure_extras.storsimple_8000_series.volume_containers_metrics

Fields

The following fields are returned by SELECT queries:

The collection of metrics.

NameDatatypeDescription
nameobjectThe name of the metric.
dimensionsarrayThe metric dimensions.
endTimestring (date-time)The end time of the metric data.
primaryAggregationstringThe metric aggregation type.
resourceIdstringThe ID of metric source.
startTimestring (date-time)The 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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeviceName, volumeContainerName, subscriptionId, resourceGroupName, managerName, $filterGets the metrics for the specified volume container.

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.

NameDatatypeDescription
$filterstringOData Filter options
deviceNamestringThe device name
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id
volumeContainerNamestringThe volume container name.

SELECT examples

Gets the metrics for the specified volume container.

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