You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -453,6 +453,6 @@ class MySpanKindExtractor implements SpanKindExtractor<Request> {
453
453
The example `SpanKindExtractor` above decides whether to use `PRODUCER` or `CLIENT` based on how the
454
454
request is going to be processed. This example reflects a real-life scenario: you might find
455
455
similar code in a messaging library instrumentation, since according to
456
-
the [OpenTelemetry messaging semantic conventions](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/messaging.md#span-kind)
456
+
the [OpenTelemetry messaging semantic conventions](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/messaging/messaging-spans.md#span-kind)
457
457
the span kind should be set to `CLIENT` if sending the message is completely synchronous and waits
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/code/CodeAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/db/DbClientAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/db/SqlClientAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpClientAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpClientAttributesExtractorBuilder.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ public final class HttpClientAttributesExtractorBuilder<REQUEST, RESPONSE> {
50
50
51
51
/**
52
52
* Configures the HTTP request headers that will be captured as span attributes as described in <a
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpCommonAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpServerAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpServerAttributesExtractorBuilder.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public final class HttpServerAttributesExtractorBuilder<REQUEST, RESPONSE> {
52
52
53
53
/**
54
54
* Configures the HTTP request headers that will be captured as span attributes as described in <a
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpSpanNameExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/http/HttpSpanStatusExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/messaging/MessageOperation.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/messaging/MessagingAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/messaging/MessagingSpanNameExtractor.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ public final class MessagingSpanNameExtractor<REQUEST> implements SpanNameExtrac
11
11
12
12
/**
13
13
* Returns a {@link SpanNameExtractor} that constructs the span name according to <a
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/net/NetClientAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/net/NetServerAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/net/PeerServiceAttributesExtractor.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
17
17
/**
18
18
* Extractor of the {@code peer.service} span attribute, described in <a
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/rpc/RpcClientAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation-api-semconv/src/main/java/io/opentelemetry/instrumentation/api/instrumenter/rpc/RpcServerAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation/graphql-java-12.0/library/src/main/java/io/opentelemetry/instrumentation/graphql/v12_0/GraphqlAttributesExtractor.java
Copy file name to clipboardexpand all lines: instrumentation/kafka/kafka-clients/kafka-clients-0.11/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/kafkaclients/v0_11/KafkaConsumerInstrumentation.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ public static void onExit(
116
116
// we're storing the context of the receive span so that process spans can use it as
117
117
// parent context even though the span has ended
118
118
// this is the suggested behavior according to the spec batch receive scenario:
0 commit comments