Hello. I’m trying to enable the Tempo Search feature in Grafana as described here: Tempo in Grafana | Grafana Tempo documentation
I have added the following to the Grafana helm chart values:
...
grafana.ini:
feature_toggles:
enable: tempoSearch tempoBackendSearch
...
And the following to the Tempo helm chart values:
...
search:
enabled: true
...
This results in the following additions to the configmaps:
...
data:
tempo.yaml: |
search_enabled: true
...
...
data:
grafana.ini: |
[feature_toggles]
enable = tempoSearch tempoBackendSearch
...
Additionally the version is v9.0.6. Am I missing something?