AppPlatformSystemLogs 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
顯示 Config Server 記錄
檢視層級警告和錯誤的設定伺服器記錄。
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 閘道記錄
檢視企業層的 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
顯示應用程式組態服務記錄
檢視企業層的應用程式組態服務記錄。
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