// Metadata we're enhancing the spans with
pub const TIME: &str = "time";
pub const MESSAGE: &str = "msg";
pub const ELAPSED_MILLIS: &str = "elapsed_time_ms";
pub const TIME_SINCE_START: &str = "time_since_span_entered_ms";
/// Type of the span
pub const TYPE: &str = "span_type";
// Span Metadata
pub const LEVEL: &str = "level";
pub const TARGET: &str = "target";
pub const THREAD_ID: &str = "thread_id";
pub const THREAD_NAME: &str = "thread_name";