Mention how to capture collection and operation names from query text in the registry (#1070)
Co-authored-by: Joao Grassi <5938087+joaopgrassi@users.noreply.github.com>
This commit is contained in:
parent
61870711f9
commit
cb771da926
|
|
@ -0,0 +1,22 @@
|
|||
# Use this changelog template to create an entry for release notes.
|
||||
#
|
||||
# If your change doesn't affect end users you should instead start
|
||||
# your pull request title with [chore] or use the "Skip Changelog" label.
|
||||
|
||||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
|
||||
change_type: enhancement
|
||||
|
||||
# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
|
||||
component: db
|
||||
|
||||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
|
||||
note: Mention how to capture collection and operation names from query text in the registry
|
||||
|
||||
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
|
||||
# The values here must be integers.
|
||||
issues: [ 1070 ]
|
||||
|
||||
# (Optional) One or more lines of additional information to render under the primary note.
|
||||
# These lines will be padded with 2 spaces and then inserted directly into the document.
|
||||
# Use pipe (|) for multiline entries.
|
||||
subtext:
|
||||
|
|
@ -28,14 +28,15 @@ This group defines the attributes used to describe telemetry in the context of d
|
|||
| `db.query.text` | string | The database query being executed. | `SELECT * FROM wuser_table where username = ?`; `SET mykey "WuValue"` |  |
|
||||
| `db.system` | string | The database management system (DBMS) product as identified by the client instrumentation. [5] | `other_sql`; `adabas`; `cache` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** If a database system has multiple namespace components, they SHOULD be concatenated (potentially using database system specific conventions) from most general to most specific namespace component, and more specific namespaces SHOULD NOT be captured without the more general namespaces, to ensure that "startswith" queries for the more general namespaces will be valid.
|
||||
Semantic conventions for individual database systems SHOULD document what `db.namespace` means in the context of that system.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
|
||||
**[3]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[4]:** Query parameters should only be captured when `db.query.text` is parameterized with placeholders.
|
||||
If a parameter has no name and instead is referenced only by index, then `<key>` SHOULD be the 0-based index.
|
||||
|
|
|
|||
|
|
@ -40,16 +40,17 @@ described on this page.
|
|||
| [`server.address`](/docs/attributes-registry/server.md) | string | Name of the database host. [11] | `example.com`; `10.1.2.80`; `/tmp/my.sock` | `Recommended` |  |
|
||||
| [`db.query.parameter.<key>`](/docs/attributes-registry/db.md) | string | The query parameters used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being the parameter value. [12] | `someval`; `55` | `Opt-In` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
**[2]:** If readily available. The collection name MAY be parsed from the query text, in which case it SHOULD be the first collection name found in the query.
|
||||
|
||||
**[3]:** For commands that switch the keyspace, this SHOULD be set to the target keyspace (even if the command fails).
|
||||
|
||||
**[4]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[5]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[5]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[6]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -43,14 +43,15 @@ Cosmos DB instrumentation includes call-level (public API) surface spans and net
|
|||
| [`user_agent.original`](/docs/attributes-registry/user-agent.md) | string | Full user-agent string is generated by Cosmos DB SDK [10] | `cosmos-netstandard-sdk/3.23.0\|3.23.1\|1\|X64\|Linux 5.4.0-1098-azure 104 18\|.NET Core 3.1.32\|S\|` | `Recommended` |  |
|
||||
| [`db.query.parameter.<key>`](/docs/attributes-registry/db.md) | string | The query parameters used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being the parameter value. [11] | `someval`; `55` | `Opt-In` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** <!-- TODO: overriding the base note, workaround for https://github.com/open-telemetry/build-tools/issues/299 -->
|
||||
|
||||
**[3]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[4]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[4]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[5]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ described on this page.
|
|||
|
||||
**[2]:** In **CouchDB**, `db.operation.name` should be set to the HTTP method + the target REST route according to the API reference documentation. For example, when retrieving a document, `db.operation.name` would be set to (literally, i.e., without replacing the placeholders with concrete values): [`GET /{db}/{docid}`](https://docs.couchdb.org/en/stable/api/document/common.html#get--db-docid).
|
||||
|
||||
**[3]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[3]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[4]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -108,18 +108,19 @@ of `[ 0.001, 0.005, 0.01, 0.05, 0.1, 0.5, 1, 5, 10 ]`.
|
|||
|
||||
**[1]:** The actual DBMS may differ from the one identified by the client. For example, when using PostgreSQL client libraries to connect to a CockroachDB, the `db.system` is set to `postgresql` based on the instrumentation's best knowledge.
|
||||
|
||||
**[2]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[2]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[3]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
**[3]:** If readily available. The collection name MAY be parsed from the query text, in which case it SHOULD be the first collection name in the query.
|
||||
|
||||
**[4]:** If a database system has multiple namespace components, they SHOULD be concatenated (potentially using database system specific conventions) from most general to most specific namespace component, and more specific namespaces SHOULD NOT be captured without the more general namespaces, to ensure that "startswith" queries for the more general namespaces will be valid.
|
||||
Semantic conventions for individual database systems SHOULD document what `db.namespace` means in the context of that system.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
|
||||
**[5]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[6]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[6]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[7]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -103,18 +103,19 @@ These attributes will usually be the same for all operations performed over the
|
|||
|
||||
**[1]:** The actual DBMS may differ from the one identified by the client. For example, when using PostgreSQL client libraries to connect to a CockroachDB, the `db.system` is set to `postgresql` based on the instrumentation's best knowledge.
|
||||
|
||||
**[2]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[2]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[3]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
**[3]:** If readily available. The collection name MAY be parsed from the query text, in which case it SHOULD be the first collection name found in the query.
|
||||
|
||||
**[4]:** If a database system has multiple namespace components, they SHOULD be concatenated (potentially using database system specific conventions) from most general to most specific namespace component, and more specific namespaces SHOULD NOT be captured without the more general namespaces, to ensure that "startswith" queries for the more general namespaces will be valid.
|
||||
Semantic conventions for individual database systems SHOULD document what `db.namespace` means in the context of that system.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
|
||||
**[5]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[6]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[6]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[7]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -35,8 +35,9 @@ described on this page.
|
|||
**[2]:** When performing table-related operations, the instrumentations SHOULD extract the namespace from the table name according to the [HBase table naming conventions](https://hbase.apache.org/book.html#namespace_creation). If namespace is not provided, instrumentation SHOULD set `db.namespace` value to `default`.
|
||||
|
||||
**[3]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[4]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[4]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[5]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -30,14 +30,14 @@ described on this page.
|
|||
| [`server.port`](/docs/attributes-registry/server.md) | int | Server port number. [6] | `80`; `8080`; `443` | `Conditionally Required` [7] |  |
|
||||
| [`server.address`](/docs/attributes-registry/server.md) | string | Name of the database host. [8] | `example.com`; `10.1.2.80`; `/tmp/my.sock` | `Recommended` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** <!-- TODO: overriding the base note, workaround for https://github.com/open-telemetry/build-tools/issues/299 -->
|
||||
|
||||
**[3]:** See [MongoDB database commands](https://www.mongodb.com/docs/manual/reference/command/).
|
||||
|
||||
**[4]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[4]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[5]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -32,10 +32,10 @@ described on this page.
|
|||
| [`server.address`](/docs/attributes-registry/server.md) | string | Name of the database host. [10] | `example.com`; `10.1.2.80`; `/tmp/my.sock` | `Recommended` |  |
|
||||
| [`db.query.parameter.<key>`](/docs/attributes-registry/db.md) | string | The query parameters used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being the parameter value. [11] | `someval`; `55` | `Opt-In` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
**[2]:** If readily available. The collection name MAY be parsed from the query text, in which case it SHOULD be the first collection name found in the query.
|
||||
|
||||
**[3]:** When connecting to a default instance, `db.namespace` SHOULD be set to the name of the database. When connecting to a [named instance](https://learn.microsoft.com/sql/connect/jdbc/building-the-connection-url#named-and-multiple-sql-server-instances), `db.namespace` SHOULD be set to the combination of instance and database name following the `{instance_name}.{database_name}` pattern.
|
||||
For commands that switch the database, this SHOULD be set to the target database (even if the command fails).
|
||||
|
|
@ -43,7 +43,7 @@ For commands that switch the database, this SHOULD be set to the target database
|
|||
**[4]:** This SHOULD be the SQL command such as `SELECT`, `INSERT`, `UPDATE`, `CREATE`, `DROP`.
|
||||
In the case of `EXEC`, this SHOULD be the stored procedure name that is being executed.
|
||||
|
||||
**[5]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[5]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[6]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -38,8 +38,9 @@ Instrumentations SHOULD NOT set this attribute if capturing it would require add
|
|||
For commands that switch the database, this SHOULD be set to the target database (even if the command fails).
|
||||
|
||||
**[2]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[3]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[3]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[4]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -30,10 +30,10 @@ described on this page.
|
|||
| [`server.address`](/docs/attributes-registry/server.md) | string | Name of the database host. [10] | `example.com`; `10.1.2.80`; `/tmp/my.sock` | `Recommended` |  |
|
||||
| [`db.query.parameter.<key>`](/docs/attributes-registry/db.md) | string | The query parameters used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being the parameter value. [11] | `someval`; `55` | `Opt-In` |  |
|
||||
|
||||
**[1]:** If the collection name is parsed from the query, it SHOULD match the value provided in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
**[1]:** It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
|
||||
**[2]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
**[2]:** If readily available. The collection name MAY be parsed from the query text, in which case it SHOULD be the first collection name found in the query.
|
||||
|
||||
**[3]:** If a database system has multiple namespace components, they SHOULD be concatenated
|
||||
(potentially using database system specific conventions) from most general to most
|
||||
|
|
@ -58,7 +58,7 @@ If instrumentation cannot reliably determine the current database name, it SHOUL
|
|||
**[4]:** This SHOULD be the SQL command such as `SELECT`, `INSERT`, `UPDATE`, `CREATE`, `DROP`.
|
||||
In the case of `EXEC`, this SHOULD be the stored procedure name that is being executed.
|
||||
|
||||
**[5]:** If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture `db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
**[5]:** If readily available. The operation name MAY be parsed from the query text, in which case it SHOULD be the first operation name found in the query.
|
||||
|
||||
**[6]:** The `error.type` SHOULD match the error code returned by the database or the client library, the canonical name of exception that occurred, or another low-cardinality error identifier. Instrumentations SHOULD document the list of errors they report.
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ groups:
|
|||
- ref: db.operation.name
|
||||
requirement_level:
|
||||
conditionally_required: >
|
||||
If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture
|
||||
`db.operation.name`, then it SHOULD be the first operation name found in the query.
|
||||
If readily available. The operation name MAY be parsed from the query text,
|
||||
in which case it SHOULD be the first operation name found in the query.
|
||||
- ref: server.address
|
||||
brief: >
|
||||
Name of the database host.
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@ groups:
|
|||
- ref: db.collection.name
|
||||
requirement_level:
|
||||
conditionally_required: >
|
||||
If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture
|
||||
`db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
If readily available. The collection name MAY be parsed from the query text,
|
||||
in which case it SHOULD be the first collection name in the query.
|
||||
- ref: db.system
|
||||
# TODO: Not adding to the minimal because of https://github.com/open-telemetry/build-tools/issues/192
|
||||
requirement_level: required
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@ groups:
|
|||
stability: experimental
|
||||
brief: The name of a collection (table, container) within the database.
|
||||
note: >
|
||||
If the collection name is parsed from the query, it SHOULD match the value provided
|
||||
in the query and may be qualified with the schema and database name.
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
If the collection name is parsed from the query text, it SHOULD be the first collection name found in the query
|
||||
and it SHOULD match the value provided in the query text including any schema and database name prefix.
|
||||
examples: ['public.users', 'customers']
|
||||
- id: namespace
|
||||
type: string
|
||||
|
|
@ -38,6 +38,8 @@ groups:
|
|||
The name of the operation or command being executed.
|
||||
note: >
|
||||
It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.
|
||||
|
||||
If the operation name is parsed from the query text, it SHOULD be the first operation name found in the query.
|
||||
examples: ['findAndModify', 'HMSET', 'SELECT']
|
||||
- id: query.text
|
||||
type: string
|
||||
|
|
|
|||
|
|
@ -34,9 +34,8 @@ groups:
|
|||
- ref: db.collection.name
|
||||
requirement_level:
|
||||
conditionally_required: >
|
||||
If readily available. Otherwise, if the instrumentation library parses `db.query.text` to capture
|
||||
`db.collection.name`, then it SHOULD be the first collection name found in the query.
|
||||
|
||||
If readily available. The collection name MAY be parsed from the query text,
|
||||
in which case it SHOULD be the first collection name found in the query.
|
||||
|
||||
- id: trace.db.common.full
|
||||
type: attribute_group
|
||||
|
|
|
|||
Loading…
Reference in New Issue