Skip to content

Commit 80e0f65

Browse files
committed
spotless
1 parent 49ef8ed commit 80e0f65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation/jdbc/library/src/main/java/io/opentelemetry/instrumentation/jdbc/internal/JdbcInstrumenterFactory.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ public static Instrumenter<DbRequest, Void> createTransactionInstrumenter(
109109
boolean enabled) {
110110
return Instrumenter.<DbRequest, Void>builder(
111111
openTelemetry, INSTRUMENTATION_NAME, DbRequest::getOperation)
112-
.addAttributesExtractor(SqlClientAttributesExtractor.builder(JdbcAttributesGetter.INSTANCE).build())
112+
.addAttributesExtractor(
113+
SqlClientAttributesExtractor.builder(JdbcAttributesGetter.INSTANCE).build())
113114
.addAttributesExtractor(TransactionAttributeExtractor.INSTANCE)
114115
.addAttributesExtractors(extractors)
115116
.setEnabled(enabled)

0 commit comments

Comments
 (0)