debug_worker_stacktraces
Creates, updates, deletes, gets or lists a debug_worker_stacktraces
resource.
Overview
Name | debug_worker_stacktraces |
Type | Resource |
Id | google.dataflow.debug_worker_stacktraces |
Fields
The following fields are returned by SELECT
queries:
- projects_locations_jobs_debug_get_worker_stacktraces
Successful response
Name | Datatype | Description |
---|---|---|
sdks | array | Repeated as unified worker may have multiple SDK processes. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_jobs_debug_get_worker_stacktraces | select | projectId , location , jobId | Get worker stacktraces from debug capture. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
jobId | string | |
location | string | |
projectId | string |
SELECT
examples
- projects_locations_jobs_debug_get_worker_stacktraces
Get worker stacktraces from debug capture.
SELECT
sdks
FROM google.dataflow.debug_worker_stacktraces
WHERE projectId = '{{ projectId }}' -- required
AND location = '{{ location }}' -- required
AND jobId = '{{ jobId }}' -- required;