Skip to content

Commit 8f7b457

Browse files
committed
up
1 parent e89bc3f commit 8f7b457

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Semantic Conventions are defined for the following areas:
2323
* [CICD](cicd/README.md): Semantic Conventions for CICD systems.
2424
* [Cloud Providers](cloud-providers/README.md): Semantic Conventions for cloud providers libraries.
2525
* [CloudEvents](cloudevents/README.md): Semantic Conventions for the CloudEvents specification.
26-
* [Database](database/README.md): Semantic Conventions for database operations.
26+
* [Database](db/README.md): Semantic Conventions for database operations.
2727
* [Exceptions](exceptions/README.md): Semantic Conventions for exceptions.
2828
* [FaaS](faas/README.md): Semantic Conventions for Function as a Service (FaaS) operations.
2929
* [Feature Flags](feature-flags/README.md): Semantic Conventions for feature flag evaluations.

docs/db/oracledb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ that support query parsing SHOULD generate a summary following
9494
[Generating query summary](/docs/db/database-spans.md#generating-a-summary-of-the-query)
9595
section.
9696

97-
**[13] `db.query.text`:** Non-parameterized query text SHOULD NOT be collected by default unless explicitly configured and sanitized to exclude sensitive data, e.g. by redacting all literal values present in the query text. See [Sanitization of `db.query.text`](../database/database-spans.md#sanitization-of-dbquerytext). Parameterized query text MUST also NOT be collected by default unless explicitly configured. The query parameter values themselves are opt-in, see [`db.query.parameter.<key>`](../registry/attributes/db.md)).
97+
**[13] `db.query.text`:** Non-parameterized query text SHOULD NOT be collected by default unless explicitly configured and sanitized to exclude sensitive data, e.g. by redacting all literal values present in the query text. See [Sanitization of `db.query.text`](/docs/db/database-spans.md#sanitization-of-dbquerytext). Parameterized query text MUST also NOT be collected by default unless explicitly configured. The query parameter values themselves are opt-in, see [`db.query.parameter.<key>`](../registry/attributes/db.md)).
9898

99-
**[14] `db.query.text`:** For sanitization see [Sanitization of `db.query.text`](../database/database-spans.md#sanitization-of-dbquerytext). For batch operations, if the individual operations are known to have the same query text then that query text SHOULD be used, otherwise all of the individual query texts SHOULD be concatenated with separator `; ` or some other database system specific separator if more applicable.
99+
**[14] `db.query.text`:** For sanitization see [Sanitization of `db.query.text`](/docs/db/database-spans.md#sanitization-of-dbquerytext). For batch operations, if the individual operations are known to have the same query text then that query text SHOULD be used, otherwise all of the individual query texts SHOULD be concatenated with separator `; ` or some other database system specific separator if more applicable.
100100

101101
**[15] `db.stored_procedure.name`:** If operation applies to a specific stored procedure.
102102

docs/general/attribute-requirement-level.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ requirement level from the referred semantic convention applies.
3838

3939
<!-- TODO(jsuereth) - make examples not break on changes to semconv -->
4040

41-
For example, [Database semantic convention](../database/README.md) references
41+
For example, [Database semantic convention](/docs/db/README.md) references
4242
`network.transport` attribute defined in [General attributes](./README.md) with
4343
`Conditionally Required` level on it.
4444

model/db/spans.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,12 +1008,12 @@ groups:
10081008
recommended: >
10091009
Non-parameterized query text SHOULD NOT be collected by default unless explicitly configured
10101010
and sanitized to exclude sensitive data, e.g. by redacting all literal values present
1011-
in the query text. See [Sanitization of `db.query.text`](../database/database-spans.md#sanitization-of-dbquerytext).
1011+
in the query text. See [Sanitization of `db.query.text`](/docs/db/database-spans.md#sanitization-of-dbquerytext).
10121012
Parameterized query text MUST also NOT be collected by default unless explicitly configured.
10131013
The query parameter values themselves are opt-in,
10141014
see [`db.query.parameter.<key>`](../registry/attributes/db.md)).
10151015
note: >
1016-
For sanitization see [Sanitization of `db.query.text`](../database/database-spans.md#sanitization-of-dbquerytext).
1016+
For sanitization see [Sanitization of `db.query.text`](/docs/db/database-spans.md#sanitization-of-dbquerytext).
10171017
For batch operations, if the individual operations are known to have the same query text then that query text SHOULD be used,
10181018
otherwise all of the individual query texts SHOULD be concatenated with separator `; ` or some other database system specific separator if more applicable.
10191019
examples: ["SELECT * FROM wuser_table where username = :mykey"]

0 commit comments

Comments
 (0)