gcp-trace-query-natural-language
Query Google Cloud trace data using natural language to find specific insights, such as failed traces or recent activity, across your project's logs efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | No | Optional Google Cloud project ID | |
query | Yes | Natural language query about traces (e.g., "Show me failed traces from the last hour") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "Optional Google Cloud project ID",
"type": "string"
},
"query": {
"description": "Natural language query about traces (e.g., \"Show me failed traces from the last hour\")",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}