-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add peer service tag in dbm sql commenter #7913
Merged
jordan-wong
merged 10 commits into
master
from
add-peer-service-tag-in-DBM-sql-commenter
Jan 30, 2025
+67
−7
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d606acb
add peer.service to the SQLCommenter when explicity specified, add te…
jordan-wong 290f919
Remove comments, cleanup
jordan-wong 2f55434
add working version with unit tests passing
jordan-wong 64baa3f
remove comments and dev print statements
jordan-wong 22cc757
remove accidentally added extra param
jordan-wong 2e5fe0d
add null check for ActiveSpan
jordan-wong 5949893
merge master
jordan-wong 6fa70ce
refactor toComment behavior
jordan-wong d94a746
fix small bug
jordan-wong 69b16cc
clean up PR, rename variables and refactor test logic for readability
jordan-wong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ public void testToComment() { | |
dbService, | ||
hostname, | ||
dbName, | ||
null, | ||
env, | ||
version, | ||
traceParent); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
import datadog.trace.agent.test.AgentTestRunner | ||
import datadog.trace.bootstrap.instrumentation.api.AgentSpan | ||
import datadog.trace.bootstrap.instrumentation.api.AgentTracer | ||
import datadog.trace.bootstrap.instrumentation.api.Tags | ||
|
||
import datadog.trace.instrumentation.jdbc.SQLCommenter | ||
|
||
import static datadog.trace.agent.test.utils.TraceUtils.runUnderTrace | ||
|
||
class SQLCommenterTest extends AgentTestRunner { | ||
|
||
def "test find first word"() { | ||
|
@@ -35,15 +41,13 @@ class SQLCommenterTest extends AgentTestRunner { | |
String sqlWithComment = "" | ||
if (injectTrace) { | ||
sqlWithComment = SQLCommenter.inject(query, dbService, dbType, host, dbName, traceParent, true, appendComment) | ||
} else { | ||
if (appendComment) { | ||
sqlWithComment = SQLCommenter.append(query, dbService, dbType, host, dbName) | ||
} else { | ||
sqlWithComment = SQLCommenter.prepend(query, dbService, dbType, host, dbName) | ||
} | ||
} else if (appendComment) { | ||
sqlWithComment = SQLCommenter.append(query, dbService, dbType, host, dbName) | ||
} | ||
else { | ||
sqlWithComment = SQLCommenter.prepend(query, dbService, dbType, host, dbName) | ||
} | ||
|
||
sqlWithComment == expected | ||
|
||
then: | ||
sqlWithComment == expected | ||
|
@@ -105,4 +109,38 @@ class SQLCommenterTest extends AgentTestRunner { | |
"/*customer-comment*/ SELECT * FROM foo" | "SqlCommenter" | "Test" | "my-service" | "mysql" | "h" | "n" | "TestVersion" | false | false | null | "/*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',dde='Test',ddpv='TestVersion'*/ /*customer-comment*/ SELECT * FROM foo" | ||
"/*traceparent" | "SqlCommenter" | "Test" | "my-service" | "mysql" | "h" | "n" | "TestVersion" | false | false | null | "/*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',dde='Test',ddpv='TestVersion'*/ /*traceparent" | ||
} | ||
|
||
def "test encode Sql Comment with peer service"() { | ||
setup: | ||
injectSysConfig("dd.service", ddService) | ||
injectSysConfig("dd.env", ddEnv) | ||
injectSysConfig("dd.version", ddVersion) | ||
|
||
when: | ||
String sqlWithComment = "" | ||
runUnderTrace("testTrace"){ | ||
AgentSpan currSpan = AgentTracer.activeSpan() | ||
currSpan.setTag(Tags.PEER_SERVICE, peerService) | ||
|
||
if (injectTrace) { | ||
sqlWithComment = SQLCommenter.inject(query, dbService, dbType, host, dbName, traceParent, true, appendComment) | ||
} | ||
else if (appendComment) { | ||
sqlWithComment = SQLCommenter.append(query, dbService, dbType, host, dbName) | ||
} | ||
else { | ||
sqlWithComment = SQLCommenter.prepend(query, dbService, dbType, host, dbName) | ||
} | ||
} | ||
|
||
then: | ||
sqlWithComment == expected | ||
|
||
where: | ||
query | ddService | ddEnv | dbService | dbType | host | dbName | ddVersion | injectTrace | appendComment | traceParent | peerService | expected | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we can probably update this to only have the cases that include |
||
"SELECT * FROM foo" | "SqlCommenter" | "Test" | "my-service" | "mysql" | "h" | "n" | "TestVersion" | true | true | "00-00000000000000007fffffffffffffff-000000024cb016ea-00" | "" | "SELECT * FROM foo /*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',dde='Test',ddpv='TestVersion',traceparent='00-00000000000000007fffffffffffffff-000000024cb016ea-00'*/" | ||
"SELECT * FROM foo" | "SqlCommenter" | "Test" | "my-service" | "postgres" | "h" | "n" | "TestVersion" | true | true | "00-00000000000000007fffffffffffffff-000000024cb016ea-00" | "" | "SELECT * FROM foo /*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',dde='Test',ddpv='TestVersion',traceparent='00-00000000000000007fffffffffffffff-000000024cb016ea-00'*/" | ||
"SELECT * FROM foo" | "SqlCommenter" | "Test" | "my-service" | "mysql" | "h" | "n" | "TestVersion" | true | true | "00-00000000000000007fffffffffffffff-000000024cb016ea-00" | "testPeer" | "SELECT * FROM foo /*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',ddprs='testPeer',dde='Test',ddpv='TestVersion',traceparent='00-00000000000000007fffffffffffffff-000000024cb016ea-00'*/" | ||
"SELECT * FROM foo" | "SqlCommenter" | "Test" | "my-service" | "postgres" | "h" | "n" | "TestVersion" | true | true | "00-00000000000000007fffffffffffffff-000000024cb016ea-00" | "testPeer" | "SELECT * FROM foo /*ddps='SqlCommenter',dddbs='my-service',ddh='h',dddb='n',ddprs='testPeer',dde='Test',ddpv='TestVersion',traceparent='00-00000000000000007fffffffffffffff-000000024cb016ea-00'*/" | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jordan-wong is the goal to add the
peer.service
tag that the user manually set (this is rare) or the one that we are supposed to calculate in the tracer?