Skip to main content

extensions_monitoring_status

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

Overview

Nameextensions_monitoring_status
TypeResource
Idazure.hdinsight.extensions_monitoring_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.
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 Operations Management Suite (OMS) 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 Operations Management Suite (OMS) on the HDInsight cluster.

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