Frågor för tabellen AppPlatformSystemLogs
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Visa konfigurationsserverloggarna
Visa konfigurationsserverloggar för nivå varning och fel.
AppPlatformSystemLogs
| where LogType == "ConfigServer" and Level in ("WARN", "ERROR")
| project TimeGenerated , Level , ServiceName , Thread , Stack , Log , _ResourceId
| limit 100
Visa tjänstregisterloggarna
Visa tjänstregisterloggar för nivå varning och fel för alla nivåer.
AppPlatformSystemLogs
| where LogType == "ServiceRegistry" and Level in ("WARN", "ERROR")
| project TimeGenerated , Level , ServiceName , Thread , Stack , Log , _ResourceId
| limit 100
Visa Spring Cloud Gateway-loggarna
Visa Spring Cloud Gateway-loggar för Enterprise-nivåer.
AppPlatformSystemLogs
| where LogType == "SpringCloudGateway"
| project TimeGenerated , ServiceName , Log , _ResourceId
| limit 100
Visa API-portalloggarna
Visa API-portalloggar för Enterprise-nivåer.
AppPlatformSystemLogs
| where LogType == "ApiPortal"
| project TimeGenerated , ServiceName , Log , _ResourceId
| limit 100
Visa loggarna för programkonfigurationstjänsten
Visa programkonfigurationstjänstloggar för Enterprise-nivåer.
AppPlatformSystemLogs
| where LogType == "ApplicationConfigurationService"
| project TimeGenerated , ServiceName , Log , _ResourceId
| limit 100
Visa Spring Cloud Gateway-operatörsloggarna
Visa Spring Cloud Gateway-operatörsloggar för Enterprise-nivåer.
AppPlatformSystemLogs
| where LogType == "SpringCloudGatewayOperator"
| project TimeGenerated , ServiceName , Log , _ResourceId
| limit 100