Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ dependencies {
api("com.google.auto.service:auto-service-annotations:1.1.1")
api("com.google.auto.value:auto-value:1.11.1")
api("com.google.auto.value:auto-value-annotations:1.11.1")
api("com.google.errorprone:error_prone_annotations:2.48.0")
api("com.google.errorprone:error_prone_core:2.48.0")
api("com.google.errorprone:error_prone_test_helpers:2.48.0")
api("com.google.errorprone:error_prone_annotations:2.49.0")
api("com.google.errorprone:error_prone_core:2.49.0")
api("com.google.errorprone:error_prone_test_helpers:2.49.0")
api("io.github.netmikey.logunit:logunit-jul:2.0.0")
api("io.opentelemetry.proto:opentelemetry-proto:1.10.0-alpha")
api("io.prometheus:simpleclient:0.16.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
* one stack trace. Once {@linkplain ActivationEvent#handleDeactivationEvent(SamplingProfiler)
* handling the deactivation event} of the root span in a thread (after which the current {@link
* io.opentelemetry.context.Context} would not contain a span anymore), the {@link CallTree} is
* {@linkplain CallTree#spanify(CallTree.Root, Span, TraceContext, SpanAnchoredClock, StringBuilder,
* Tracer)} converted into regular spans}.
* {@linkplain CallTree#spanify(CallTree.Root, Span, TraceContext, SpanAnchoredClock,
* java.util.function.BiConsumer, StringBuilder, Tracer)} converted into regular spans}.
*
* <p>Overall, the allocation rate does not depend on the number of {@link ActivationEvent}s but
* only on {@link InferredSpansConfiguration#getProfilingInterval()} and {@link
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public void enrichSpan(SpanBuilder spanBuilder, ExecutionEvent executionEvent) {
return;
}
Xpp3Dom toNode = pluginNode.getChild("to");
if (pluginNode == null) {
if (toNode == null) {
logger.debug("OpenTelemetry: GoogleJibBuildHandler: 'to' node not found");
return;
}
Xpp3Dom imageNode = toNode.getChild("image");
if (pluginNode == null) {
if (imageNode == null) {
logger.debug("OpenTelemetry: GoogleJibBuildHandler: 'to/image' node not found");
return;
}
Expand Down
Loading