Compartir a través de


Consultas para la tabla AppPlatformSystemLogs

Mostrar los registros del servidor de configuración

Vea los registros del servidor de configuración de nivel de advertencia y error.

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

Mostrar los registros del registro de servicio

Vea los registros del Registro del servicio de nivel de advertencia y error para todos los niveles.

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

Mostrar los registros de Spring Cloud Gateway

Vea los registros de Spring Cloud Gateway para los niveles Enterprise.

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

Mostrar los registros del portal de API

Vea los registros del portal de API para los niveles Enterprise.

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

Mostrar los registros del servicio de configuración de aplicaciones

Vea los registros del servicio de configuración de aplicaciones para los niveles Enterprise.

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

Mostrar los registros de operadores de Spring Cloud Gateway

Vea los registros de operadores de Spring Cloud Gateway para los niveles Enterprise.

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