configs metadata using JSONB containment. Only sessions where configs contains all key-value pairs in your filter will be returned.
Basic Usage
Filter Examples
Multiple Keys
Sessions must match all key-value pairs:Nested Objects
Filter by nested config values:Combine with User Filter
Important Behaviors
- Case-sensitive:
{"Agent": "x"}won’t match{"agent": "x"} - Type-sensitive:
{"count": 1}won’t match{"count": "1"} - Partial matching: filter
{"a": 1}matches configs{"a": 1, "b": 2} - NULL excluded: Sessions with
configs=nullare excluded from filtered results