Skip to main content

iscsi_servers_metric_definitions

Creates, updates, deletes, gets or lists an iscsi_servers_metric_definitions resource.

Overview

Nameiscsi_servers_metric_definitions
TypeResource
Idazure_extras.storsimple_1200_series.iscsi_servers_metric_definitions

Fields

The following fields are returned by SELECT queries:

The collection of metric definitions.

NameDatatypeDescription
nameobjectThe metric name
dimensionsarrayThe supported dimensions
metricAvailabilitiesarrayThe available metric granularities
primaryAggregationTypestringThe metric aggregation type
resourceIdstringThe metric source id
typestringThe metric definition type
unitstringThe metric unit

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdeviceName, iscsiServerName, subscriptionId, resourceGroupName, managerNameRetrieves metric definitions for all metrics aggregated at iSCSI server.

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
deviceNamestringThe device name.
iscsiServerNamestringThe iSCSI server name.
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

Retrieves metric definitions for all metrics aggregated at iSCSI server.

SELECT
name,
dimensions,
metricAvailabilities,
primaryAggregationType,
resourceId,
type,
unit
FROM azure_extras.storsimple_1200_series.iscsi_servers_metric_definitions
WHERE deviceName = '{{ deviceName }}' -- required
AND iscsiServerName = '{{ iscsiServerName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;