Constant DB_OPERATION_PARAMETER
pub const DB_OPERATION_PARAMETER: &'static str;
Expand description
A database operation parameter, with key
being the parameter name, and the attribute value being a string representation of the parameter value.
§Notes
For example, a client-side maximum number of rows to read from the database
MAY be recorded as the db.operation.parameter.max_rows
attribute.
db.query.text
parameters SHOULD be captured using db.query.parameter.[key]
instead of db.operation.parameter.[key]
.
§Examples
"someval"
"55"