Converts URL query params to OpenTelemetry attributes with dotted keys.
Each param becomes its own attribute (<prefix>.<name>), so the backend's
hlog.FormatAttributes flattens them natively into a nested attribute map
without needing to JSON-parse a stringified blob.
Repeated keys (?foo=1&foo=2) become array-valued attributes — single
values stay as strings to keep simple equality queries working.
Converts URL query params to OpenTelemetry attributes with dotted keys. Each param becomes its own attribute (
<prefix>.<name>), so the backend'shlog.FormatAttributesflattens them natively into a nested attribute map without needing to JSON-parse a stringified blob.Repeated keys (
?foo=1&foo=2) become array-valued attributes — single values stay as strings to keep simple equality queries working.