io.opentelemetry.instrumentation.kafka.internal.KafkaProducerAttributesExtractor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-kafka-clients-common Show documentation
Show all versions of opentelemetry-kafka-clients-common Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.instrumentation.kafka.internal;
import io.opentelemetry.api.common.AttributesBuilder;
import io.opentelemetry.context.Context;
import io.opentelemetry.instrumentation.api.instrumenter.AttributesExtractor;
import io.opentelemetry.semconv.SemanticAttributes;
import java.nio.ByteBuffer;
import javax.annotation.Nullable;
import org.apache.kafka.clients.producer.RecordMetadata;
final class KafkaProducerAttributesExtractor
implements AttributesExtractor {
@Override
public void onStart(
AttributesBuilder attributes, Context parentContext, KafkaProducerRequest request) {
Object key = request.getRecord().key();
if (key != null && canSerialize(key.getClass())) {
attributes.put(SemanticAttributes.MESSAGING_KAFKA_MESSAGE_KEY, key.toString());
}
if (request.getRecord().value() == null) {
attributes.put(SemanticAttributes.MESSAGING_KAFKA_MESSAGE_TOMBSTONE, true);
}
if (request.getClientId() != null) {
attributes.put(SemanticAttributes.MESSAGING_CLIENT_ID, request.getClientId());
}
}
private static boolean canSerialize(Class> keyClass) {
// we make a simple assumption here that we can serialize keys by simply calling toString()
// and that does not work for byte[] or ByteBuffer
return !(keyClass.isArray() || keyClass == ByteBuffer.class);
}
@Override
public void onEnd(
AttributesBuilder attributes,
Context context,
KafkaProducerRequest request,
@Nullable RecordMetadata recordMetadata,
@Nullable Throwable error) {
if (recordMetadata != null) {
attributes.put(
SemanticAttributes.MESSAGING_KAFKA_DESTINATION_PARTITION, recordMetadata.partition());
attributes.put(SemanticAttributes.MESSAGING_KAFKA_MESSAGE_OFFSET, recordMetadata.offset());
}
}
}