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.
66
80%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Use this skill to generate correct Logging Query Language (LQL) queries for Cloud Logging.
Strict syntax requirements:
") for string literals. Do not use
single quotes (').AND, OR, NOT.Common pitfalls:
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 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:
--) are allowed, and
are the ONLY acceptable way to include explanations or warnings."<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:
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.Refer to references/api_reference.md for LQL syntax rules, including
Operators, NULL handling, SEARCH, and Regex.
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:
For Google Cloud services that aren't listed: If the service is not listed above, write the LQL query based on your general knowledge.
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")).protoPayload schema paths and common examples.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.resource.type="audited_resource".jsonPayload.* or protoPayload.* field structures when
you are certain of their exact name.SEARCH() function to find the keyword globally within the
correct resource.type.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.1776276
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.