Skip to main content

extensions_azure_monitor_status

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

Overview

Nameextensions_azure_monitor_status
TypeResource
Idazure.hdinsight.extensions_azure_monitor_status

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
clusterMonitoringEnabledbooleanThe status of the monitor on the HDInsight cluster.
selectedConfigurationsobjectThe selected configurations.
workspaceIdstringThe workspace ID of the monitor on the HDInsight cluster.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, clusterNameGets the status of Azure Monitor on the HDInsight cluster.

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
clusterNamestringThe name of the cluster.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringThe subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Gets the status of Azure Monitor on the HDInsight cluster.

SELECT
clusterMonitoringEnabled,
selectedConfigurations,
workspaceId
FROM azure.hdinsight.extensions_azure_monitor_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
;