Update `db.sql.table` deprecation note (#2035)
Co-authored-by: Liudmila Molkova <limolkova@microsoft.com>
This commit is contained in:
parent
9727b525e5
commit
4f261829ff
|
|
@ -163,7 +163,7 @@ Describes deprecated database attributes.
|
|||
| <a id="db-operation" href="#db-operation">`db.operation`</a> | string | Deprecated, use `db.operation.name` instead. | `findAndModify`; `HMSET`; `SELECT` | <br>Replaced by `db.operation.name`. |
|
||||
| <a id="db-query-parameter" href="#db-query-parameter">`db.query.parameter.<key>`</a> | 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. | `someval`; `55` | <br>Replaced by `db.operation.parameter`. |
|
||||
| <a id="db-redis-database-index" href="#db-redis-database-index">`db.redis.database_index`</a> | int | Deprecated, use `db.namespace` instead. | `0`; `1`; `15` | <br>Replaced by `db.namespace`. |
|
||||
| <a id="db-sql-table" href="#db-sql-table">`db.sql.table`</a> | string | Deprecated, use `db.collection.name` instead. | `mytable` | <br>Replaced by `db.collection.name`. |
|
||||
| <a id="db-sql-table" href="#db-sql-table">`db.sql.table`</a> | string | Deprecated, use `db.collection.name` instead, but only if not extracting the value from `db.query.text`. | `mytable` | <br>Replaced by `db.collection.name`, but only if not extracting the value from `db.query.text`. |
|
||||
| <a id="db-statement" href="#db-statement">`db.statement`</a> | string | The database statement being executed. | `SELECT * FROM wuser_table`; `SET mykey "WuValue"` | <br>Replaced by `db.query.text`. |
|
||||
| <a id="db-system" href="#db-system">`db.system`</a> | string | Deprecated, use `db.system.name` instead. | `other_sql`; `adabas`; `cache` | <br>Replaced by `db.system.name`. |
|
||||
| <a id="db-user" href="#db-user">`db.user`</a> | string | Deprecated, no replacement at this time. | `readonly_user`; `reporting_user` | <br>No replacement at this time. |
|
||||
|
|
|
|||
|
|
@ -65,8 +65,8 @@ groups:
|
|||
- id: db.sql.table
|
||||
type: string
|
||||
stability: development
|
||||
brief: 'Deprecated, use `db.collection.name` instead.'
|
||||
deprecated: "Replaced by `db.collection.name`."
|
||||
brief: 'Deprecated, use `db.collection.name` instead, but only if not extracting the value from `db.query.text`.'
|
||||
deprecated: "Replaced by `db.collection.name`, but only if not extracting the value from `db.query.text`."
|
||||
examples: 'mytable'
|
||||
- id: db.redis.database_index
|
||||
type: int
|
||||
|
|
|
|||
Loading…
Reference in New Issue