-
Notifications
You must be signed in to change notification settings - Fork 530
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
GRPC IP address strange behavior. Changed in configuration file to 10.... lead to 127.0.0.1 #4566
Comments
In single binary mode Tempo assumes it can connect to itself at 127.0.0.1: https://github.com/grafana/tempo/blob/main/cmd/tempo/app/modules.go#L363-L366 If you would like to use the above configuration you need to configure the frontend worker address as well.
|
Thank you for your answer. Unfortunately, the error is still present querier:
frontend_worker:
frontend_address: 10.33.3.184:9095 if I use without port number |
Yup, it takes the string typed in literally and, i suppose, defaults to 443. This could be improved but may be a bit finicky given all of the various modes and configuration options in Tempo. Is the full host/port specification |
Unfortunately, |
I'm honestly not sure. I think you're going to need to do some network level debugging from both inside and outside the network namespace of the Tempo container. Can you connect to |
Yes, off course. I can connect. Error is changing IP address into 127.0.0.1 in spite of 10.3.3.184 is already present in configuration file. |
GRPC IP address strange behavior. Changed in configuration file to 10.... lead to 127.0.0.1
If I set
grpc_listen_address: 10.33.3.184
I can't connect by GRPC from Grafana.And I have got the error:
P.S. I can connect by HTTP. IP and ports are already checked.
The text was updated successfully, but these errors were encountered: