Query Attributes

1 attribute in this category. 1 deprecated

Deprecated Attributes

These attributes are deprecated and should not be used in new code. See each attribute for migration guidance.

query.<key> Deprecated

string PII: Maybe OTel: False Dynamic

An item in a query string. Usually added by client-side routing frameworks like vue-router.

Example query.id='123'
Dynamic Suffix Yes - the key contains dynamic parts

Use url.query instead.

Instead of sending items individually in query.<key>, they should be sent all together with url.query.

Raw JSON
{
  "key": "query.<key>",
  "brief": "An item in a query string. Usually added by client-side routing frameworks like vue-router.",
  "has_dynamic_suffix": true,
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "query.id='123'",
  "deprecation": {
    "replacement": "url.query",
    "reason": "Instead of sending items individually in query.<key>, they should be sent all together with url.query.",
    "_status": null
  }
}