-
Notifications
You must be signed in to change notification settings - Fork 888
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 db.values #3091
Add db.values #3091
Changes from all commits
cdf0c2c
5f05d95
2a2557d
e7f0989
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,17 @@ | |
|
||
<!-- toc --> | ||
|
||
- [Connection-level attributes](#connection-level-attributes) | ||
* [Notes and well-known identifiers for `db.system`](#notes-and-well-known-identifiers-for-dbsystem) | ||
* [Connection-level attributes for specific technologies](#connection-level-attributes-for-specific-technologies) | ||
- [Call-level attributes](#call-level-attributes) | ||
* [Call-level attributes for specific technologies](#call-level-attributes-for-specific-technologies) | ||
+ [Cassandra](#cassandra) | ||
- [Examples](#examples) | ||
* [MySQL](#mysql) | ||
* [Redis](#redis) | ||
* [MongoDB](#mongodb) | ||
- [Semantic conventions for database client calls](#semantic-conventions-for-database-client-calls) | ||
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. Did you run the markdown generator tool or change this manually? I think the build is failing because of it. The top-level page title is not in the table of contents I think, so the diff does not match. 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. Sorry, I was sure I closed this PR. I thought I only need to change the yaml file, but according to your comment, I'll read the CONTRIBUTING.md file and act accordingly. 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. I'm a bit confused 😅 which PR is the "real" one? This or #3092? Can you close the one that's obsolete now? |
||
- [Connection-level attributes](#connection-level-attributes) | ||
- [Notes and well-known identifiers for `db.system`](#notes-and-well-known-identifiers-for-dbsystem) | ||
- [Connection-level attributes for specific technologies](#connection-level-attributes-for-specific-technologies) | ||
- [Call-level attributes](#call-level-attributes) | ||
- [Call-level attributes for specific technologies](#call-level-attributes-for-specific-technologies) | ||
- [Cassandra](#cassandra) | ||
- [Examples](#examples) | ||
- [MySQL](#mysql) | ||
- [Redis](#redis) | ||
- [MongoDB](#mongodb) | ||
|
||
<!-- tocstop --> | ||
|
||
|
@@ -265,4 +266,4 @@ Furthermore, `db.name` is not specified as there is no database name in Redis an | |
| `db.name` | `"shopDb"` | | ||
| `db.statement` | not set | | ||
| `db.operation` | `"findAndModify"` | | ||
| `db.mongodb.collection` | `"products"` | | ||
| `db.mongodb.collection` | `"products"` | |
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.
Does it make sense to indicate here how this can be turned off? Is it something "speced" or it differs from instrumentation to instrumentation? And I guess the "data sensitivity" concern with these values are protected somehow by this opt-in configuration?