Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complex types in Logs panel +/- filters and ahdoc, doesn't work #678

Open
Slach opened this issue Nov 28, 2024 · 1 comment
Open

Complex types in Logs panel +/- filters and ahdoc, doesn't work #678

Slach opened this issue Nov 28, 2024 · 1 comment
Assignees
Labels
bug p1 Priority 1
Milestone

Comments

@Slach
Copy link
Collaborator

Slach commented Nov 28, 2024

adhoc filters from details doesn't work ;(

we need to option to allow enable and disable filters for complex clickhouse types like Map/Object etc.

image
image

filters works but got error on clickhouse level
image

doesn't work

SELECT *
FROM default.test_logs_with_complex_labels
WHERE (_time >= toDateTime64(1732609375, 3)) AND (_time <= toDateTime64(1732782175, 3)) AND (_map = '{"map_key0":"map_value0"}')
FORMAT JSON

works with different signle quotes serialization

SELECT *
FROM default.test_logs_with_complex_labels
WHERE (_time >= toDateTime64(1732609375, 3)) AND (_time <= toDateTime64(1732782175, 3)) AND (_map = '{\'map_key0\':\'map_value0\'}')
FORMAT JSON

but this is clickhouse specific serialization, i don't know how to properly implement it for all clickhouse related invariants

also doesn't work dropdown selection
image
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug p1 Priority 1
Projects
None yet
Development

No branches or pull requests

2 participants