extensions_monitoring_status
Creates, updates, deletes, gets or lists an extensions_monitoring_status
resource.
Overview
Name | extensions_monitoring_status |
Type | Resource |
Id | azure.hdinsight.extensions_monitoring_status |
Fields
The following fields are returned by SELECT
queries:
- get
OK. The request has succeeded.
Name | Datatype | Description |
---|---|---|
clusterMonitoringEnabled | boolean | The status of the monitor on the HDInsight cluster. |
workspaceId | string | The workspace ID of the monitor on the HDInsight cluster. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , clusterName | Gets 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.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the cluster. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
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
;