TraceQL query says "localblocks processor not found"

Hi ,

The “localblocks processor not found” error occurs because the local-blocks processor must be explicitly enabled in your Tempo configuration to run TraceQL metrics queries.

For all tenants, add this in your values.yaml or overrides block: overrides:
defaults:
metrics_generator:
processors: [local-blocks] If you want to run metrics on historical data, also set: metrics_generator:
processor:
local_blocks:
flush_to_storage: true After updating the configuration, redeploy your Helm chart and the TraceQL metrics queries should work.