Generate Logging Query Language queries
Use this skill to generate correct Logging Query Language (LQL) queries for
Cloud Logging.
Core rules
Strict syntax requirements:
- Always use double quotes (
") for string literals. Do not use
single quotes (').
- Write boolean operators in all capitals:
AND, OR, NOT.
- Always use parentheses to group terms and explicitly enforce precedence.
Common pitfalls:
- Instance ID vs. Instance Name: For the
gce_instance resource type,
do NOT compare instance names to instance IDs. Instance names are
strings (for example, my-instance). Instance IDs are numeric. If you
only have the name, then search by instance name,
SEARCH("my-instance"), or use resource.labels.instance_name if that
label is available for the resource.
- Resource Type Accuracy: Do not guess resource types. You must look
up the correct
resource.type value in the service-specific reference
files. For example, use internal_http_lb_rule for Internal HTTP(S)
Load Balancer rules when filtering by forwarding rule name or region
(instead of http_load_balancer).
Output format and placeholders:
- Output only the raw LQL query text. Do not include conversational
filler. Do not wrap the query in markdown code blocks unless explicitly
requested by the user. Valid LQL comments (using
--) are allowed, and
are the ONLY acceptable way to include explanations or warnings.
- Never block on missing variables. If the user's request lacks
specific identifiers (like a project ID, instance name, or IP address),
do not ask them for clarification. If the variable is required for a
functional query (like a log bucket name for a regional log), insert an
uppercase placeholder string wrapped in angle brackets (for example,
"<PROJECT_ID>"). CRITICALLY: If you include a placeholder for a
variable the user omitted, it will act as an explicit filter that causes
logs to be missed. Therefore, you MUST omit the entire filter/line
containing the placeholder if the field is not strictly required. For
example, completely omit resource.labels.instance_id="..." if the user
didn't specify an instance, but you MUST include
logName=".../projects/<PROJECT_ID>/..." with a placeholder if
constructing a regional log bucket query where a project ID is strictly
required.
Preferred fields:
- Include
resource.type and log_id restrictions when the query targets
specific Google Cloud services or resources. Global queries (for
example, "latest error logs") do not require these restrictions.
Detailed reference
Refer to references/api_reference.md for LQL syntax rules, including
Operators, NULL handling, SEARCH, and Regex.
Service reference files
Before generating a query, you MUST read the examples for the specific service.
LQL schemas and resource.type values are service-specific. Do not stop
reading after finding the Base Schema in the file. You must verify if there are
specific requirements for state tracking (like previousState) or
resource-specific log IDs detailed in the paragraphs or specific query examples
below the schema block.
For the following services, read the exact file listed:
- App Engine
- BigQuery
- Cloud Deployment Manager
- Cloud Functions
- Cloud Observability (Monitoring, Logging, Trace)
- Cloud Run
- Cloud Source Repositories
- Cloud Spanner
- Cloud SQL
- Cloud Storage
- Cloud Tasks
- Compute Engine (GCE)
- Dataflow
- Dataproc
- Kubernetes Engine (GKE)
- IAM & Service Accounts
- Networking (VPC, Load Balancing, and others)
- Security (Audit logging)
- Service Usage (Enable/Disable API, Quotas)
- Third Party (for example, Nginx, Apache)
For Google Cloud services that aren't listed: If the service is not listed
above, write the LQL query based on your general knowledge.
Query generation rules
- Resource Types: Explicitly define the
resource.type in your queries
when focusing on specific services. For some queries, you may need to search
across multiple types (for example, resource.type=("bigquery_project" OR "bigquery_dataset")).
- Audit and Admin Logs: If the user asks for audit logs, admin logs, API
logs, or logs about who created, updated, deleted, read, or accessed a
resource:
- You MUST read
references/query_audit_logs.md for the
correct
protoPayload schema paths and common examples.
- If a specific example is not listed, guess the
protoPayload.methodName
by combining the service and verb. When guessing, you MUST use the
scoped SEARCH() function (e.g., SEARCH(protoPayload.methodName, "compute.instances.insert")) instead of the exact match operator (=)
to avoid version prefix mismatches. Do NOT use the colon operator (:)
as it may cause substring false positives.
- For generic API enable/disable events (e.g., a service was disabled),
always use
resource.type="audited_resource".
- Handling Unknown Schemas (Crucial): If the user asks to filter by a
specific field or condition, and if you cannot find a matching example or
schema in the reference files, then you must generate a query using global
search.
- Only specify
jsonPayload.* or protoPayload.* field structures when
you are certain of their exact name.
- Use the
SEARCH() function to find the keyword globally within the
correct resource.type.
- Mandatory LQL Comment: When delivering a query that uses
SEARCH,
you MUST add an LQL comment (using --) at the top of the query
indicating you used a global keyword search because the exact schema
wasn't in your references. Do NOT output conversational text, strictly
adhere to the Output Format rule.
Supporting links
1---2name: cloud-logging-query-generation3description: Generates Logging Query Language (LQL) queries for Google Cloud Logging from natural language. Use this skill when you need to query log data or when you are debugging issues. You can filter log data by Google Cloud service. Don't use this skill to query other databases, such as SQL or Cloud Spanner.4---56# Generate Logging Query Language queries78Use this skill to generate correct Logging Query Language (LQL) queries for9Cloud Logging.1011## Core rules12131. **Strict syntax requirements:**1415 * **Always use double quotes (`"`)** for string literals. Do not use16 single quotes (`'`).17 * Write boolean operators in all capitals: `AND`, `OR`, `NOT`.18 * Always use parentheses to group terms and explicitly enforce precedence.19202. **Common pitfalls:**2122 * **Instance ID vs. Instance Name:** For the `gce_instance` resource type,23 do NOT compare instance names to instance IDs. Instance names are24 strings (for example, `my-instance`). Instance IDs are numeric. If you25 only have the name, then search by instance name,26 `SEARCH("my-instance")`, or use `resource.labels.instance_name` if that27 label is available for the resource.28 * **Resource Type Accuracy:** Do not guess resource types. You must look29 up the correct `resource.type` value in the service-specific reference30 files. For example, use `internal_http_lb_rule` for Internal HTTP(S)31 Load Balancer rules when filtering by forwarding rule name or region32 (instead of `http_load_balancer`).33343. **Output format and placeholders:**3536 * Output **only** the raw LQL query text. Do not include conversational37 filler. Do not wrap the query in markdown code blocks unless explicitly38 requested by the user. Valid LQL comments (using `--`) are allowed, and39 are the ONLY acceptable way to include explanations or warnings.40 * **Never block on missing variables.** If the user's request lacks41 specific identifiers (like a project ID, instance name, or IP address),42 do not ask them for clarification. If the variable is required for a43 functional query (like a log bucket name for a regional log), insert an44 uppercase placeholder string wrapped in angle brackets (for example,45 `"<PROJECT_ID>"`). **CRITICALLY**: If you include a placeholder for a46 variable the user omitted, it will act as an explicit filter that causes47 logs to be missed. Therefore, you MUST omit the entire filter/line48 containing the placeholder if the field is not strictly required. For49 example, completely omit `resource.labels.instance_id="..."` if the user50 didn't specify an instance, but you MUST include51 `logName=".../projects/<PROJECT_ID>/..."` with a placeholder if52 constructing a regional log bucket query where a project ID is strictly53 required.54554. **Preferred fields:**5657 * Include `resource.type` and `log_id` restrictions when the query targets58 specific Google Cloud services or resources. Global queries (for59 example, "latest error logs") do not require these restrictions.6061## Detailed reference6263Refer to `references/api_reference.md` for LQL syntax rules, including64Operators, NULL handling, SEARCH, and Regex.6566## Service reference files6768Before generating a query, you MUST read the examples for the specific service.69LQL schemas and `resource.type` values are service-specific. **Do not stop70reading after finding the Base Schema in the file. You must verify if there are71specific requirements for state tracking (like `previousState`) or72resource-specific log IDs detailed in the paragraphs or specific query examples73below the schema block.**7475**For the following services, read the exact file listed:**7677* [App Engine](references/query_app_engine.md)78* [BigQuery](references/query_bigquery.md)79* [Cloud Deployment Manager](references/query_deployment_manager.md)80* [Cloud Functions](references/query_cloud_functions.md)81* [Cloud Observability (Monitoring, Logging, Trace)](references/query_cloud_observability.md)82* [Cloud Run](references/query_cloud_run.md)83* [Cloud Source Repositories](references/query_cloud_source_repositories.md)84* [Cloud Spanner](references/query_spanner.md)85* [Cloud SQL](references/query_cloud_sql.md)86* [Cloud Storage](references/query_cloud_storage.md)87* [Cloud Tasks](references/query_cloud_tasks.md)88* [Compute Engine (GCE)](references/query_compute_engine.md)89* [Dataflow](references/query_dataflow.md)90* [Dataproc](references/query_dataproc.md)91* [Kubernetes Engine (GKE)](references/query_gke.md)92* [IAM & Service Accounts](references/query_iam.md)93* [Networking (VPC, Load Balancing, and others)](references/query_networking.md)94* [Security (Audit logging)](references/query_security.md)95* [Service Usage (Enable/Disable API, Quotas)](references/query_service_usage.md)96* [Third Party (for example, Nginx, Apache)](references/query_third_party.md)9798**For Google Cloud services that aren't listed:** If the service is not listed99above, write the LQL query based on your general knowledge.100101## Query generation rules1021031. **Resource Types:** Explicitly define the `resource.type` in your queries104 when focusing on specific services. For some queries, you may need to search105 across multiple types (for example, `resource.type=("bigquery_project" OR106 "bigquery_dataset")`).1072. **Audit and Admin Logs:** If the user asks for audit logs, admin logs, API108 logs, or logs about who created, updated, deleted, read, or accessed a109 resource:110 * You MUST read111 [references/query_audit_logs.md](references/query_audit_logs.md) for the112 correct `protoPayload` schema paths and common examples.113 * If a specific example is not listed, guess the `protoPayload.methodName`114 by combining the service and verb. When guessing, you MUST use the115 scoped `SEARCH()` function (e.g., `SEARCH(protoPayload.methodName,116 "compute.instances.insert")`) instead of the exact match operator (`=`)117 to avoid version prefix mismatches. Do NOT use the colon operator (`:`)118 as it may cause substring false positives.119 * For generic API enable/disable events (e.g., a service was disabled),120 always use `resource.type="audited_resource"`.1213. **Handling Unknown Schemas (Crucial):** If the user asks to filter by a122 specific field or condition, and if you cannot find a matching example or123 schema in the reference files, **then you must generate a query using global124 search.**125 * Only specify `jsonPayload.*` or `protoPayload.*` field structures when126 you are certain of their exact name.127 * Use the `SEARCH()` function to find the keyword globally within the128 correct `resource.type`.129 * **Mandatory LQL Comment:** When delivering a query that uses `SEARCH`,130 you MUST add an LQL comment (using `--`) at the top of the query131 indicating you used a global keyword search because the exact schema132 wasn't in your references. Do NOT output conversational text, strictly133 adhere to the Output Format rule.134135## Supporting links136137* [Cloud Logging query language documentation](https://docs.cloud.google.com/logging/docs/view/logging-query-language)138* [Monitored resource types catalog](https://docs.cloud.google.com/logging/docs/api/v2/resource-list)139* [Cloud Logging query library](https://docs.cloud.google.com/logging/docs/view/query-library)