io.strimzi.kafka.bridge.tracing.TracingConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-bridge Show documentation
Show all versions of kafka-bridge Show documentation
Bridge that allows HTTP clients to interact with Apache Kafka clusters.
The newest version!
/*
* Copyright Strimzi authors.
* License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
*/
package io.strimzi.kafka.bridge.tracing;
/**
* Tracing constants.
*/
public final class TracingConstants {
/** tracing component name definition */
public static final String COMPONENT = "strimzi-kafka-bridge";
/** Kafka service name definition */
public static final String KAFKA_SERVICE = "kafka";
/** OpenTelemetry tracing type */
public static final String OPENTELEMETRY = "opentelemetry";
/** OpenTelemetry service name env var */
public static final String OPENTELEMETRY_SERVICE_NAME_ENV_KEY = "OTEL_SERVICE_NAME";
/** OpenTelemetry service name system property */
public static final String OPENTELEMETRY_SERVICE_NAME_PROPERTY_KEY = "otel.service.name";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy