All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.devonfw.module.kafka.common.messaging.trace.impl.MessageTraceHeaders Maven / Gradle / Ivy

There is a newer version: 2023.01.001
Show newest version
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";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy