-
Notifications
You must be signed in to change notification settings - Fork 248
Hyperdx Loading... #483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have the same problem |
Hi @satya-soul and @Buringcarbon are you guys both using non-localhost domains to access the page? Can you check if accessing on It's most likely you'll need to edit the environment variables and rebuild the frontend app with the instructions here for custom domains: https://github.com/hyperdxio/hyperdx#:~:text=Changing%20Hostname%20and%20Port |
Hey @MikeShi42 Thanks for the response, it did work on ec2 sever but still facing issue with getting logs from kubernetes. Do you know how to host it on Kubernetes? I have gone through a helm chart by one of open source contributor but still facing issue. |
@satya-soul the most important part is you'll need to have an image with the new domain baked in so that the frontend knows where to talk to the backend. I don't believe the helm chart takes care of that step today |
Hosting the web UI at non-localhost origin requires some extra configuration I can use this configuration at LAN host 192.168.2.120 , with no problem submitting and reading the traces
|
Hi, I am facing same problem, "Hyperdx Loading..." with back window. I have tried the solution mentioned at https://github.com/hyperdxio/hyperdx#:~:text=Changing%20Hostname%20and%20Port but that did not work for me. I deployed HyperDx on a EC2 Ubuntu machine. Here are the steps I followed...
|
I found this issue is fixed in v2. |
I'm not sure, because login isn't possible, redirecting to localhost |
Hello, turns out the problem is that the image build using Inside of docker-compose.yml it uses the following app:
image: ${IMAGE_NAME_HDX}:${IMAGE_VERSION}-app with Inside of the docker build \
--build-arg CODE_VERSION=${LATEST_VERSION} \
--build-arg OTEL_EXPORTER_OTLP_ENDPOINT=${OTEL_EXPORTER_OTLP_ENDPOINT} \
--build-arg OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME} \
--build-arg PORT=${HYPERDX_APP_PORT} \
--build-arg SERVER_URL=${HYPERDX_API_URL}:${HYPERDX_API_PORT} \
. -f ./packages/app/Dockerfile -t ${IMAGE_NAME}:${LATEST_VERSION}-app --target prod So the image you are building locally is never used. |
This is correct. Once I updated my .env file so that the correct images were used, the problem went away. Here are the relevant entries from my .env file: IMAGE_NAME=ghcr.io/hyperdxio/hyperdx I wish this was documented somewhere. |
There is an issue with the build-local command. I am going to raise a PR to fix it. Thanks for the report 🙏 |
Address #483 (comment) regression from this PR #524
The
The api/app URL and port separation issue should be addressed in the v2 branch, as it will no longer involve separate services. Lines 112 to 135 in 1e5d97c
|
Using |
@kalashnikovisme the v2 images are quite different (that tag is basically a v2 local mode), what was your setup and what were you looking to do with the v2 image? |
@MikeShi42 thanks! I've figured out that this is v2. So, I already prepared deployment configuration with rebuilding of the image with needed API url. |
@kalashnikovisme got it, just to confirm things are working? Just wanted to point out that the issues/responses above for v1 probably won't apply for the v2 images given they've changed quite a bit :) (and if there are any issues, probably a new issue should be created). |
@MikeShi42 I understood this, thanks. I've tried to deploy 2.beta-10 and it basically did not work 😆 It's not a problem, I understand it's the beta, so, no worries 🙂 |
docker run -p 8000:8000 -p 4318:4318 -p 4317:4317 -p 8080:8080 -p 8002:8002 hyperdx/hyperdx-local
When I deployed it through docker I am getting loading page.

The text was updated successfully, but these errors were encountered: