File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ tasks {
53
53
" -javaagent:${shadowTask.archiveFile.get()} " ,
54
54
" -Dotel.traces.exporter=none" ,
55
55
" -Dotel.metrics.exporter=none" ,
56
+ " -Dotel.logs.exporter=none" ,
56
57
// avoid instrumenting HttpURLConnection for now since it is used to make the requests
57
58
// and this benchmark is focused on servlet overhead for now
58
59
" -Dotel.instrumentation.http-url-connection.enabled=false" ,
Original file line number Diff line number Diff line change @@ -253,6 +253,9 @@ tasks {
253
253
dependsOn(shadowJar)
254
254
255
255
jvmArgs(" -Dotel.javaagent.debug=true" )
256
+ jvmArgs(" -Dotel.traces.exporter=none" )
257
+ jvmArgs(" -Dotel.metrics.exporter=none" )
258
+ jvmArgs(" -Dotel.logs.exporter=none" )
256
259
257
260
jvmArgumentProviders.add(JavaagentProvider (shadowJar.flatMap { it.archiveFile }))
258
261
You can’t perform that action at this time.
0 commit comments