File tree 1 file changed +2
-5
lines changed
smoke-tests-otel-starter/src/test/java/io/opentelemetry/smoketest
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 53
53
},
54
54
webEnvironment = SpringBootTest .WebEnvironment .RANDOM_PORT ,
55
55
properties = {
56
- "otel.traces.exporter=none" ,
57
- "otel.metrics.exporter=none" ,
58
- "otel.logs.exporter=none" ,
56
+ // We set the export interval of the metrics to 100 ms. The default value is 1 minute.
57
+ // the headers are simply set here to make sure that headers can be parsed
59
58
"otel.metric.export.interval=100" ,
60
59
"otel.exporter.otlp.headers=a=1,b=2" ,
61
60
"otel.traces.exporter=memory" ,
62
61
"otel.metrics.exporter=memory" ,
63
62
"otel.logs.exporter=memory"
64
- // We set the export interval of the metrics to 100 ms. The default value is 1 minute.
65
- // the headers are simply set here to make sure that headers can be parsed
66
63
})
67
64
class OtelSpringStarterSmokeTest {
68
65
You can’t perform that action at this time.
0 commit comments