Skip to content

Commit 21ebff7

Browse files
authored
add ht to instrumentation names in tests (#389)
1 parent ce9ed38 commit 21ebff7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

instrumentation/java-streams/src/test/java/io/opentelemetry/javaagent/instrumentation/hypertrace/java/ContextAccessorInstrumentationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public List<String> getMuzzleHelperClassNames() {
6060
}
6161

6262
public ContextAccessorInstrumentationModule() {
63-
super("test-context-accessor");
63+
super("test-context-accessor", "ht");
6464
}
6565

6666
@Override

instrumentation/servlet/servlet-3.0/src/test/java/io/opentelemetry/javaagent/instrumentation/hypertrace/servlet/v3_0/nowrapping/request/ServletInputStreamContextAccessInstrumentationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class ServletInputStreamContextAccessInstrumentationModule extends Instru
4141
implements InstrumentationModuleMuzzle {
4242

4343
public ServletInputStreamContextAccessInstrumentationModule() {
44-
super("test-servlet-input-stream");
44+
super("test-servlet-input-stream", "ht");
4545
}
4646

4747
@Override

instrumentation/servlet/servlet-3.0/src/test/java/io/opentelemetry/javaagent/instrumentation/hypertrace/servlet/v3_0/nowrapping/response/ServletOutputStreamContextAccessInstrumentationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class ServletOutputStreamContextAccessInstrumentationModule extends Instr
4040
implements InstrumentationModuleMuzzle {
4141

4242
public ServletOutputStreamContextAccessInstrumentationModule() {
43-
super("test-servlet-output-stream");
43+
super("test-servlet-output-stream", "ht");
4444
}
4545

4646
@Override

instrumentation/servlet/servlet-rw/src/test/java/io/opentelemetry/javaagent/instrumentation/hypertrace/servlet/rw/reader/BufferedReaderContextAccessInstrumentationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class BufferedReaderContextAccessInstrumentationModule extends Instrument
3939
implements InstrumentationModuleMuzzle {
4040

4141
public BufferedReaderContextAccessInstrumentationModule() {
42-
super("test-buffered-reader");
42+
super("test-buffered-reader", "ht");
4343
}
4444

4545
@Override

instrumentation/servlet/servlet-rw/src/test/java/io/opentelemetry/javaagent/instrumentation/hypertrace/servlet/rw/writer/PrintWriterContextAccessInstrumentationModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class PrintWriterContextAccessInstrumentationModule extends Instrumentati
4141
implements InstrumentationModuleMuzzle {
4242

4343
public PrintWriterContextAccessInstrumentationModule() {
44-
super("test-print-writer");
44+
super("test-print-writer", "ht");
4545
}
4646

4747
@Override

0 commit comments

Comments
 (0)