
com.wavefront.sdk.entities.tracing.SpanLog Maven / Gradle / Ivy
package com.wavefront.sdk.entities.tracing;
import java.util.Map;
/**
* SpanLog defined as per the opentracing.io specification
*
* @author Sushant Dewan ([email protected]).
*/
public class SpanLog {
// expected to be in micros
private final long timestamp;
private final Map fields;
public SpanLog(long timestamp, Map fields) {
this.timestamp = timestamp;
this.fields = fields;
}
public long getTimestamp() {
return timestamp;
}
public Map getFields() {
return fields;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy