336 B
336 B
Querying Logs
Query structured logs for troubleshooting.
Common Queries
-- Find all events for correlation ID
CorrelationId = "abc-123-def"
-- Find errors in last hour
Level = "Error" AND @Timestamp > Now() - 1h
-- Consumer lag warnings
EventId = 3004 AND Lag > 1000