Share via


Requêtes pour la table AppPlatformSystemLogs

Afficher les journaux du serveur de configuration

Affichez les journaux du serveur de configuration d’avertissement et d’erreur de niveau pour les niveaux De base et Standard.

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

Afficher les journaux du Registre de services

Affichez les journaux du registre de services d’avertissement de niveau et d’erreur pour tous les niveaux.

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

Afficher les journaux spring Cloud Gateway

Affichez les journaux Spring Cloud Gateway pour les niveaux Entreprise.

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

Afficher les journaux du portail d’API

Affichez les journaux du portail d’API pour les niveaux Entreprise.

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

Afficher les journaux du service de configuration des applications

Affichez les journaux du service de configuration des applications pour les niveaux Entreprise.

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

Afficher les journaux d’activité de l’opérateur Spring Cloud Gateway

Affichez les journaux des opérateurs Spring Cloud Gateway pour les niveaux Entreprise.

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