Skip to main content

THREAD_ID

Constant THREAD_ID 

pub const THREAD_ID: &'static str;
Available on crate features opentelemetry and semconv_experimental only.
Expand description

Current “managed” thread ID (as opposed to OS thread ID).

§Notes

Examples of where the value can be extracted from:

Language or platformSource
JVMThread.currentThread().threadId()
.NETThread.CurrentThread.ManagedThreadId
Pythonthreading.current_thread().ident
RubyThread.current.object_id
C++std::this_thread::get_id()
Erlangerlang:self()

§Examples

  • 42