pub type PbStackTraceResponse = StackTraceResponse;Aliased Type§
pub struct PbStackTraceResponse {
pub actor_traces: BTreeMap<u32, String>,
pub rpc_traces: BTreeMap<String, String>,
pub compaction_task_traces: BTreeMap<String, String>,
pub inflight_barrier_traces: BTreeMap<u64, String>,
pub barrier_worker_state: BTreeMap<TypedId<6, u32>, String>,
pub jvm_stack_traces: BTreeMap<TypedId<6, u32>, String>,
pub meta_traces: BTreeMap<String, String>,
pub node_errors: BTreeMap<TypedId<6, u32>, String>,
pub batch_traces: BTreeMap<String, String>,
}Fields§
§actor_traces: BTreeMap<u32, String>§rpc_traces: BTreeMap<String, String>§compaction_task_traces: BTreeMap<String, String>§inflight_barrier_traces: BTreeMap<u64, String>§barrier_worker_state: BTreeMap<TypedId<6, u32>, String>key: worker id
jvm_stack_traces: BTreeMap<TypedId<6, u32>, String>key: worker id. Might be empty if the worker doesn’t run JVM.
meta_traces: BTreeMap<String, String>§node_errors: BTreeMap<TypedId<6, u32>, String>Per-worker error messages when collecting stack traces from the cluster. Key: worker id.
batch_traces: BTreeMap<String, String>Key: batch task id in the format of “{query_id}-{stage_id}-{task_id}”.