1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
use crate::honeycomb::{SpanId, TraceId};
use ::libhoney::{json, Value};
use chrono::{DateTime, Utc};
use std::collections::HashMap;
use std::fmt;
use tracing::field::{Field, Visit};
use tracing_distributed::{Event, Span};

// Visitor that builds honeycomb-compatible values from tracing fields.
#[derive(Default, Debug)]
#[doc(hidden)]
pub struct HoneycombVisitor(pub(crate) HashMap<String, Value>);

// reserved field names (TODO: document)
static RESERVED_WORDS: [&str; 9] = [
    "trace.span_id",
    "trace.trace_id",
    "trace.parent_id",
    "service_name",
    "level",
    "Timestamp",
    "name",
    "target",
    "duration_ms",
];

impl Visit for HoneycombVisitor {
    fn record_i64(&mut self, field: &Field, value: i64) {
        self.0
            .insert(mk_field_name(field.name().to_string()), json!(value));
    }

    fn record_u64(&mut self, field: &Field, value: u64) {
        self.0
            .insert(mk_field_name(field.name().to_string()), json!(value));
    }

    fn record_bool(&mut self, field: &Field, value: bool) {
        self.0
            .insert(mk_field_name(field.name().to_string()), json!(value));
    }

    fn record_str(&mut self, field: &Field, value: &str) {
        self.0
            .insert(mk_field_name(field.name().to_string()), json!(value));
    }

    fn record_debug(&mut self, field: &Field, value: &dyn fmt::Debug) {
        let s = format!("{:?}", value);
        self.0
            .insert(mk_field_name(field.name().to_string()), json!(s));
    }
}

fn mk_field_name(s: String) -> String {
    // TODO: do another pass, optimize for efficiency (lazy static set?)
    if RESERVED_WORDS.contains(&&s[..]) {
        format!("tracing.{}", s)
    } else {
        s
    }
}

pub(crate) fn event_to_values(
    event: Event<HoneycombVisitor, SpanId, TraceId>,
) -> HashMap<String, libhoney::Value> {
    let mut values = event.values.0;

    values.insert(
        // magic honeycomb string (trace.trace_id)
        "trace.trace_id".to_string(),
        // using explicit trace id passed in from ctx (req'd for lazy eval)
        json!(event.trace_id.to_string()),
    );

    values.insert(
        // magic honeycomb string (trace.parent_id)
        "trace.parent_id".to_string(),
        event
            .parent_id
            .map(|pid| json!(format!("span-{}", pid.to_string())))
            .unwrap_or(json!(null)),
    );

    // magic honeycomb string (service_name)
    values.insert("service_name".to_string(), json!(event.service_name));

    values.insert(
        "level".to_string(),
        json!(format!("{}", event.meta.level())),
    );

    let initialized_at: DateTime<Utc> = event.initialized_at.into();
    values.insert("Timestamp".to_string(), json!(initialized_at.to_rfc3339()));

    // not honeycomb-special but tracing-provided
    values.insert("name".to_string(), json!(event.meta.name()));
    values.insert("target".to_string(), json!(event.meta.target()));

    values
}

pub(crate) fn span_to_values(
    span: Span<HoneycombVisitor, SpanId, TraceId>,
) -> HashMap<String, libhoney::Value> {
    let mut values = span.values.0;

    values.insert(
        // magic honeycomb string (trace.span_id)
        "trace.span_id".to_string(),
        json!(format!("span-{}", span.id.to_string())),
    );

    values.insert(
        // magic honeycomb string (trace.trace_id)
        "trace.trace_id".to_string(),
        // using explicit trace id passed in from ctx (req'd for lazy eval)
        json!(span.trace_id.to_string()),
    );

    values.insert(
        // magic honeycomb string (trace.parent_id)
        "trace.parent_id".to_string(),
        span.parent_id
            .map(|pid| json!(format!("span-{}", pid.to_string())))
            .unwrap_or(json!(null)),
    );

    // magic honeycomb string (service_name)
    values.insert("service_name".to_string(), json!(span.service_name));

    values.insert("level".to_string(), json!(format!("{}", span.meta.level())));

    let initialized_at: DateTime<Utc> = span.initialized_at.into();
    values.insert("Timestamp".to_string(), json!(initialized_at.to_rfc3339()));

    // not honeycomb-special but tracing-provided
    values.insert("name".to_string(), json!(span.meta.name()));
    values.insert("target".to_string(), json!(span.meta.target()));

    match span.completed_at.duration_since(span.initialized_at) {
        Ok(d) => {
            // honeycomb-special (I think, todo: get full list of known values)
            values.insert("duration_ms".to_string(), json!(d.as_millis() as u64));
        }
        Err(e) => {
            eprintln!("error comparing system times in tracing-honeycomg, indicates possible clock skew: {:?}", e);
        }
    }

    values
}