risingwave_pb::monitor_service

Type Alias PbStackTraceResponse

source
pub type PbStackTraceResponse = StackTraceResponse;
Expand description

Alias for StackTraceResponse.

Aliased Type§

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<u32, String>,
    pub jvm_stack_traces: BTreeMap<u32, 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<u32, String>

key: worker id

§jvm_stack_traces: BTreeMap<u32, String>

key: worker id. Might be empty if the worker doesn’t run JVM.