-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply service naming workflow to databases (#3256)
* add cassandra-driver versions * add elasticsearch/opensearch versions * add mongodb versions * add pg versions * add oracledb versions
- Loading branch information
Showing
20 changed files
with
367 additions
and
72 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const { resolveNaming } = require('../../dd-trace/test/plugins/helpers') | ||
|
||
module.exports = resolveNaming({ | ||
outbound: { | ||
v0: { | ||
opName: 'cassandra.query', | ||
serviceName: 'test-cassandra' | ||
}, | ||
v1: { | ||
opName: 'cassandra.query', | ||
serviceName: 'test' | ||
} | ||
} | ||
}) |
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const { resolveNaming } = require('../../dd-trace/test/plugins/helpers') | ||
|
||
module.exports = resolveNaming({ | ||
outbound: { | ||
v0: { | ||
opName: 'elasticsearch.query', | ||
serviceName: 'test-elasticsearch' | ||
}, | ||
v1: { | ||
opName: 'elasticsearch.query', | ||
serviceName: 'test' | ||
} | ||
} | ||
}) |
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const { resolveNaming } = require('../../dd-trace/test/plugins/helpers') | ||
|
||
module.exports = resolveNaming({ | ||
outbound: { | ||
v0: { | ||
opName: 'mongodb.query', | ||
serviceName: 'test-mongodb' | ||
}, | ||
v1: { | ||
opName: 'mongodb.query', | ||
serviceName: 'test' | ||
} | ||
} | ||
}) |
Oops, something went wrong.