At this point I fear I may not have understood the architecture behind the LGTM stack.
I’m tring to set up an LGTM stack, and after making some progress, I am now trying to configure authentication and multi-tenancy for the LTM components. I found basic auth is supported in both Mimir and Loki’s HTTP endpoints, but I am so far unable to find how to secure Tempo’s OTLP endpoints, neither HTTP or GRPC.
The closest I was able to find is in the Distributor docs, where they mention more advanced settings in open-telemmetry’s receiver docs. In there, I was able to find this basicauth
extension example, but it doesn’t seem to be supported by Tempo. Neither within distributor
…
failed parsing config: failed to parse configFile /etc/tempo/config.yaml: yaml: unmarshal errors:
2023-10-09T03:13:23.758773354Z line 12: field extensions not found in type distributor.Config
…or at the top level…
failed parsing config: failed to parse configFile /etc/tempo/config.yaml: yaml: unmarshal errors:
2023-10-09T03:11:40.182179824Z line 11: field extensions not found in type app.Config
So, my questions at this point are:
- Is it even possible to secure the OTLP endpoints?
- Should I instead rely on just the HTTP endpoint behind nginx for authentication?
- Does it even make sense what I’m trying to do? (maybe this is not how Tempo is supposed to be used at all)
- Should I instead focus on securing everything using mutual TLS?
Thank you in advance for any pointers,
Carlos