get-trace
Retrieve trace details from Google Cloud Trace using a trace ID. Specify an optional project ID to access traces within a specific Google Cloud project.
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"
}