Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
renamed TIME_MS to INSTRUMENTATION_TIME_MS
  • Loading branch information
nenadnoveljic committed Dec 3, 2024
commit 5d235a030060e76aad50432302f8c0a5d7a86be8
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ abstract class RemoteJDBCInstrumentationTest extends VersionedNamingTestBase {
}
if (this.dbmTracePreparedStatements(driver)){
"$InstrumentationTags.DBM_TRACE_INJECTED" true
"$InstrumentationTags.TIME_MS" Long
"$InstrumentationTags.INSTRUMENTATION_TIME_MS" Long
}
peerServiceFrom(Tags.DB_INSTANCE)
defaultTags()
Expand Down Expand Up @@ -564,7 +564,7 @@ abstract class RemoteJDBCInstrumentationTest extends VersionedNamingTestBase {
}
if (this.dbmTracePreparedStatements(driver)){
"$InstrumentationTags.DBM_TRACE_INJECTED" true
"$InstrumentationTags.TIME_MS" Long
"$InstrumentationTags.INSTRUMENTATION_TIME_MS" Long
}
peerServiceFrom(Tags.DB_INSTANCE)
defaultTags()
Expand Down Expand Up @@ -689,7 +689,7 @@ abstract class RemoteJDBCInstrumentationTest extends VersionedNamingTestBase {
}
if (this.dbmTracePreparedStatements(driver)){
"$InstrumentationTags.DBM_TRACE_INJECTED" true
"$InstrumentationTags.TIME_MS" Long
"$InstrumentationTags.INSTRUMENTATION_TIME_MS" Long
}
defaultTags()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class InstrumentationTags {
public static final String TWILIO_STATUS = "twilio.status";
public static final String TWILIO_PARENT_SID = "twilio.parentSid";
public static final String DBM_TRACE_INJECTED = "_dd.dbm_trace_injected";
public static final String TIME_MS = "dd.instrumentation.time_ms";
public static final String INSTRUMENTATION_TIME_MS = "_dd.instrumentation.time_ms";
Comment thread
nenadnoveljic marked this conversation as resolved.
public static final UTF8BytesString DD_MEASURED = UTF8BytesString.create("_dd.measured");
public static final UTF8BytesString DD_TOP_LEVEL = UTF8BytesString.create("_dd.top_level");
public static final UTF8BytesString DD_PARTIAL_VERSION =
Expand Down