Skip to main content

debug_worker_stacktraces

Creates, updates, deletes, gets or lists a debug_worker_stacktraces resource.

Overview

Namedebug_worker_stacktraces
TypeResource
Idgoogle.dataflow.debug_worker_stacktraces

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
sdksarrayRepeated as unified worker may have multiple SDK processes.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_jobs_debug_get_worker_stacktracesselectprojectId, location, jobIdGet 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.

NameDatatypeDescription
jobIdstring
locationstring
projectIdstring

SELECT examples

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;