Complete the code to filter logs by severity ERROR.
resource.type = "gce_instance" AND severity = "[1]"
The severity filter "ERROR" selects logs with error level severity.
Complete the code to filter logs from Compute Engine instances.
resource.type = "[1]"
"gce_instance" is the resource type for Compute Engine VM instances.
Fix the error in the query to filter logs with text payload containing 'error'.
textPayload [1] "error"
The correct operator is CONTAINS in uppercase for filtering textPayload.
Fill both blanks to filter logs with severity WARNING or higher.
severity [1] WARNING OR severity [2] ERROR
Use >= WARNING to include WARNING and higher severities, and >= ERROR to include ERROR and higher severities.
Fill all three blanks to create a query filtering logs from Cloud Functions with severity ERROR and textPayload containing 'timeout'.
resource.type = "[1]" AND severity = "[2]" AND textPayload [3] "timeout"
This query filters logs from Cloud Functions with severity ERROR and textPayload containing the word 'timeout'.