com.devonfw.module.kafka.common.messaging.trace.impl.MessageTraceHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devon4j-kafka Show documentation
Show all versions of devon4j-kafka Show documentation
kafka implementation for devon4j.
package com.devonfw.module.kafka.common.messaging.trace.impl;
import brave.Tracer;
/**
* A custom Header class for the {@link Tracer}
*
* @deprecated The implementation of devon4j-kafka will be abandoned. It is superseeded by Springs Kafka
* implementation.
*/
@Deprecated
public abstract class MessageTraceHeaders {
/**
* SPAN ID
*/
public static final String SPAN_ID = "spanId";
/**
* SAMPLED
*/
public static final String SAMPLED = "spanSampled";
/**
* PROCESS_ID
*/
public static final String PROCESS_ID = "spanProcessId";
/**
* PARENT_ID
*/
public static final String PARENT_ID = "spanParentSpanId";
/**
* TRACEID
*/
public static final String TRACE_ID = "traceId";
/**
* SPANNAME
*/
public static final String SPAN_NAME = "spanName";
}