You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the current implementation only supports Enum fields values
we need to add processing and cache SELECT DISTINCT field FROM table LIMIT X for getTagValues
The text was updated successfully, but these errors were encountered:
@PeterZaitsev adhoc values filter basic functionality implemented
unfortunately, grafana core doesn't provide additional context to adhoc.ts functions, so only
SELECT DISTINCT {field} AS value FROM {database}.{table} LIMIT300
was implement, it can be suboptimal for high cardinality values and make full column scan (PK scan or secondary index scan for some cases) in ClickHouse table
the current implementation only supports Enum fields values
we need to add processing and cache
SELECT DISTINCT field FROM table LIMIT X
for getTagValuesThe text was updated successfully, but these errors were encountered: