다음을 통해 공유


Get-AzHDInsightMonitoring

HDInsight 클러스터에서 클래식 Azure Monitor 로그 통합의 상태를 가져옵니다.

구문

Get-AzHDInsightMonitoring
   [-Name] <String>
   [-ResourceGroupName <String>]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Get-AzHDInsightMonitoring cmdlet은 HDInsight 클러스터에서 클래식 Azure Monitor 로그 통합의 상태를 가져옵니다. 모니터링을 사용하도록 설정하면 로그 분석 작업 영역 ID도 반환됩니다.

예제

예제 1

Get-AzHDInsightMonitoring -Name testcluster

{'ClusterMonitoringEnabled':'true', 'workspaceId':'1d364e89-bb71-4503-aa3d-a23535aea7bd'}

ClusterMonitoringEnabled 속성이 true이므로 클러스터에서 모니터링을 사용할 수 있습니다. 로그가 흐르는 모니터링 작업 영역 ID는 1d364e89-bb71-4503-aa3d-a23535aea7bd입니다.

예제 2

Get-AzHDInsightMonitoring -Name testcluster -ResourceGroupName testrg

{'ClusterMonitoringEnabled':'true', 'workspaceId':'1d364e89-bb71-4503-aa3d-a23535aea7bd'}

ClusterMonitoringEnabled 속성이 true이므로 클러스터에서 모니터링을 사용할 수 있습니다. 로그가 흐르는 모니터링 작업 영역 ID는 1d364e89-bb71-4503-aa3d-a23535aea7bd입니다.

예제 3

Get-AzHDInsightMonitoring -Name testcluster

{'ClusterMonitoringEnabled':'false', 'workspaceId': null}

ClusterMonitoringEnabled 속성이 false이므로 클러스터에서 모니터링을 사용할 수 없습니다.

예제 4

Get-AzHDInsightMonitoring -Name testcluster -ResourceGroupName testrg

{'ClusterMonitoringEnabled':'false', 'workspaceId': null}

ClusterMonitoringEnabled 속성이 false이므로 클러스터에서 모니터링을 사용할 수 없습니다.

매개 변수

-DefaultProfile

Azure와의 통신에 사용되는 자격 증명, 계정, 테넌트 및 구독

형식:IAzureContextContainer
별칭:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
필수:False
파이프라인 입력 허용:False
와일드카드 문자 허용:False

-Name

모니터링 상태를 가져올 클러스터의 이름입니다.

형식:String
별칭:ClusterName
Position:0
Default value:None
필수:True
파이프라인 입력 허용:True
와일드카드 문자 허용:False

-ResourceGroupName

클러스터의 리소스 그룹입니다.

형식:String
Position:Named
Default value:None
필수:False
파이프라인 입력 허용:True
와일드카드 문자 허용:False

입력

String

출력

AzureHDInsightMonitoring