gcp-trace-get-trace
Retrieve detailed trace data using a trace ID from Google Cloud Trace. Includes optional project ID support for targeted querying. Simplifies trace analysis in Google Cloud.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | No | Optional Google Cloud project ID | |
traceId | Yes | The trace ID to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "Optional Google Cloud project ID",
"type": "string"
},
"traceId": {
"description": "The trace ID to retrieve",
"type": "string"
}
},
"required": [
"traceId"
],
"type": "object"
}