다음을 통해 공유


AutoscaleScaleActionsLog 테이블에 대한 쿼리

Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.

상위 자동 크기 조정 50개 로그 표시

지난 24시간 동안의 최신 Azure 자동 크기 조정 로그를 표시합니다.

AutoscaleScaleActionsLog 
| where TimeGenerated > ago(24h) 
| limit 50

자동 크기 조정 작업 상태

최신 자동 크기 조정 작업, 크기 조정 방향, 인스턴스 수 및 상태를 나열합니다.

AutoscaleScaleActionsLog
| project TimeGenerated, ResourceId, CurrentInstanceCount, NewInstanceCount, ScaleDirection, ResultType
| sort by TimeGenerated desc 

자동 크기 조정 실패 작업

마지막 날 동안 실패한 작업의 모든 보고서를 나열합니다.

// To create an alert for this query, click '+ New alert rule'
AutoscaleScaleActionsLog 
| where TimeGenerated > ago(24h)  
| where ResultType == "Failed"