OpenTelemetry SDK
    Preparing search index...

    A database query parameter, with <key> being the parameter name, and the attribute value being a string representation of the parameter value.

    someval
    
    55
    

    If a query parameter has no name and instead is referenced only by index, then <key> SHOULD be the 0-based index.

    db.query.parameter.<key> SHOULD match up with the parameterized placeholders present in db.query.text.

    It is RECOMMENDED to capture the value as provided by the application without attempting to do any case normalization.

    db.query.parameter.<key> SHOULD NOT be captured on batch operations.

    Examples:

    • For a query SELECT * FROM users where username = %s with the parameter "jdoe", the attribute db.query.parameter.0 SHOULD be set to "jdoe".
    • For a query "SELECT * FROM users WHERE username = %(userName)s; with parameter userName = "jdoe", the attribute db.query.parameter.userName SHOULD be set to "jdoe".

    This attribute is experimental and is subject to breaking changes in minor releases of @opentelemetry/semantic-conventions.