Replies: 1 comment
-
We've been struggling with this internally too; after a few of our Javascript dependencies have been updated, we have to manually add a We spent a little bit of time looking into this, but other than knowing it's an issue with one of our dependencies, we haven't had enough time to fully investigate and fix the problem yet. @thampiotr did the original investigations (IIRC) and may have more information for what the problem was. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm currently working on getting a very minimal Grafana environment stood up and I have everything working (Loki, tempo, Mimir, Grafana and the agent as a collector).
I'm now trying to put it all behind nginx so I only have to expose the single route in.
I've got Grafana working under /grafana, and that was easy enough as the docs show how to get that done.
I've got the agent collection endpoints for traces, logs and metrics under /traces, /logs and /metrics respectively, that all works fine too.
The agent UI is what's giving me trouble.
I've got it under /agent, and after fiddling around and adding locations for the /public and /api that proxy_pass to the correct route those assets and endpoints work, but now I'm having to sub_filter the javascript to muck around with the routing and links.
I've searched the docs and the internet for how to get the agent running behind a reverse proxy but I can't find a thing.
Anyone done this / have any advice?
This is my nginx config:
Beta Was this translation helpful? Give feedback.
All reactions