다음을 통해 공유


AppPlatformSystemLogs 테이블에 대한 쿼리

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

구성 서버 로그 표시

수준 경고 및 오류의 구성 서버 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "ConfigServer" and Level in ("WARN", "ERROR")
| project TimeGenerated , Level , ServiceName , Thread , Stack , Log , _ResourceId 
| limit 100

서비스 레지스트리 로그 표시

모든 계층에 대한 경고 및 오류 수준의 서비스 레지스트리 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "ServiceRegistry" and Level in ("WARN", "ERROR")
| project TimeGenerated , Level , ServiceName , Thread , Stack , Log , _ResourceId 
| limit 100

Spring Cloud Gateway 로그 표시

엔터프라이즈 계층에 대한 Spring Cloud Gateway 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "SpringCloudGateway"
| project TimeGenerated , ServiceName , Log , _ResourceId 
| limit 100

API 포털 로그 표시

엔터프라이즈 계층에 대한 API 포털 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "ApiPortal"
| project TimeGenerated , ServiceName , Log , _ResourceId 
| limit 100

Application Configuration Service 로그 표시

엔터프라이즈 계층에 대한 Application Configuration Service 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "ApplicationConfigurationService"
| project TimeGenerated , ServiceName , Log , _ResourceId 
| limit 100

Spring Cloud Gateway 운영자 로그 표시

엔터프라이즈 계층에 대한 Spring Cloud Gateway 운영자 로그를 봅니다.

AppPlatformSystemLogs 
| where LogType == "SpringCloudGatewayOperator"
| project TimeGenerated , ServiceName , Log , _ResourceId 
| limit 100