Fix link anchors (#1354)
This commit is contained in:
parent
d9842e5770
commit
3c1f5e3389
|
|
@ -23,7 +23,7 @@ This group defines the attributes used to describe telemetry in the context of d
|
||||||
| `db.client.connection.state` | string | The state of a connection in the pool | `idle` |  |
|
| `db.client.connection.state` | string | The state of a connection in the pool | `idle` |  |
|
||||||
| `db.collection.name` | string | The name of a collection (table, container) within the database. [1] | `public.users`; `customers` |  |
|
| `db.collection.name` | string | The name of a collection (table, container) within the database. [1] | `public.users`; `customers` |  |
|
||||||
| `db.namespace` | string | The name of the database, fully qualified within the server address and port. [2] | `customers`; `test.users` |  |
|
| `db.namespace` | string | The name of the database, fully qualified within the server address and port. [2] | `customers`; `test.users` |  |
|
||||||
| `db.operation.batch.size` | int | The number of queries included in a [batch operation](/docs/database/database-spans.md#batch-operations). [3] | `2`; `3`; `4` |  |
|
| `db.operation.batch.size` | int | The number of queries included in a batch operation. [3] | `2`; `3`; `4` |  |
|
||||||
| `db.operation.name` | string | The name of the operation or command being executed. [4] | `findAndModify`; `HMSET`; `SELECT` |  |
|
| `db.operation.name` | string | The name of the operation or command being executed. [4] | `findAndModify`; `HMSET`; `SELECT` |  |
|
||||||
| `db.query.parameter.<key>` | string | A query parameter used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being a string representation of the parameter value. [5] | `someval`; `55` |  |
|
| `db.query.parameter.<key>` | string | A query parameter used in `db.query.text`, with `<key>` being the parameter name, and the attribute value being a string representation of the parameter value. [5] | `someval`; `55` |  |
|
||||||
| `db.query.text` | string | The database query being executed. [6] | `SELECT * FROM wuser_table where username = ?`; `SET mykey "WuValue"` |  |
|
| `db.query.text` | string | The database query being executed. [6] | `SELECT * FROM wuser_table where username = ?`; `SET mykey "WuValue"` |  |
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ Particular operations may refer to or require some of these attributes.
|
||||||
- [Destination](#destination)
|
- [Destination](#destination)
|
||||||
- [Other network attributes](#other-network-attributes)
|
- [Other network attributes](#other-network-attributes)
|
||||||
- [`network.peer.*` and `network.local.*` attributes](#networkpeer-and-networklocal-attributes)
|
- [`network.peer.*` and `network.local.*` attributes](#networkpeer-and-networklocal-attributes)
|
||||||
- [Client/server examples using `network.peer.*`](#clientserver-examples-using--networkpeer)
|
- [Client/server examples using `network.peer.*`](#clientserver-examples-using-networkpeer)
|
||||||
- [Simple client/server example](#simple-clientserver-example)
|
- [Simple client/server example](#simple-clientserver-example)
|
||||||
- [Client/server example with reverse proxy](#clientserver-example-with-reverse-proxy)
|
- [Client/server example with reverse proxy](#clientserver-example-with-reverse-proxy)
|
||||||
- [Client/server example with forward proxy](#clientserver-example-with-forward-proxy)
|
- [Client/server example with forward proxy](#clientserver-example-with-forward-proxy)
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ If one of them applies, then the respective value MUST be used; otherwise, a cus
|
||||||
- `send` for publishing operations
|
- `send` for publishing operations
|
||||||
- `modack` for extending the lease for a single message or batch of messages
|
- `modack` for extending the lease for a single message or batch of messages
|
||||||
- `subscribe` for operations that represent the time from after the message was received to when the message is acknowledged, negatively acknowledged, or expired.
|
- `subscribe` for operations that represent the time from after the message was received to when the message is acknowledged, negatively acknowledged, or expired.
|
||||||
- `create` and `receive` for [common messaging operations](/docs/messaging/messaging-spans.md#common-messaging-operations)
|
- `create` and `receive` for [common messaging operations](/docs/messaging/messaging-spans.md#operation-types)
|
||||||
|
|
||||||
**[2]:** The `error.type` SHOULD be predictable, and SHOULD have low cardinality.
|
**[2]:** The `error.type` SHOULD be predictable, and SHOULD have low cardinality.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@ groups:
|
||||||
- id: db.operation.batch.size
|
- id: db.operation.batch.size
|
||||||
type: int
|
type: int
|
||||||
stability: experimental
|
stability: experimental
|
||||||
brief: The number of queries included in a [batch operation](/docs/database/database-spans.md#batch-operations).
|
brief: The number of queries included in a batch operation.
|
||||||
note: >
|
note: >
|
||||||
Operations are only considered batches when they contain two or more operations,
|
Operations are only considered batches when they contain two or more operations,
|
||||||
and so `db.operation.batch.size` SHOULD never be `1`.
|
and so `db.operation.batch.size` SHOULD never be `1`.
|
||||||
|
|
|
||||||
|
|
@ -205,7 +205,7 @@ groups:
|
||||||
- `send` for publishing operations
|
- `send` for publishing operations
|
||||||
- `modack` for extending the lease for a single message or batch of messages
|
- `modack` for extending the lease for a single message or batch of messages
|
||||||
- `subscribe` for operations that represent the time from after the message was received to when the message is acknowledged, negatively acknowledged, or expired.
|
- `subscribe` for operations that represent the time from after the message was received to when the message is acknowledged, negatively acknowledged, or expired.
|
||||||
- `create` and `receive` for [common messaging operations](/docs/messaging/messaging-spans.md#common-messaging-operations)
|
- `create` and `receive` for [common messaging operations](/docs/messaging/messaging-spans.md#operation-types)
|
||||||
- id: messaging.servicebus
|
- id: messaging.servicebus
|
||||||
type: attribute_group
|
type: attribute_group
|
||||||
extends: attributes.messaging.trace.minimal
|
extends: attributes.messaging.trace.minimal
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue