Skip to content

Commit

Permalink
Fix undertow instrumentation with http pipelining
Browse files Browse the repository at this point in the history
  • Loading branch information
laurit committed May 2, 2023
1 parent 0898653 commit 17e23f6
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/

package io.opentelemetry.javaagent.instrumentation.undertow;

import com.google.auto.service.AutoService;
import io.opentelemetry.javaagent.extension.ignore.IgnoredTypesBuilder;
import io.opentelemetry.javaagent.extension.ignore.IgnoredTypesConfigurer;
import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties;

@AutoService(IgnoredTypesConfigurer.class)
public class UndertowIgnoredTypesConfigurer implements IgnoredTypesConfigurer {

@Override
public void configure(IgnoredTypesBuilder builder, ConfigProperties config) {
// When http pipelining is used HttpReadListener is passed to another worker thread to start
// processing next request when the context from the old request is still active. Prevent
// propagating context from the old request to the new one.
builder.ignoreTaskClass("io.undertow.server.protocol.http.HttpReadListener");
}
}

0 comments on commit 17e23f6

Please sign in to comment.