pinpoint icon indicating copy to clipboard operation
pinpoint copied to clipboard

Only the IP address is displayed on the back-end node

Open cuihao-ops opened this issue 9 months ago • 9 comments

Hi, In springboot applications, the service name can be displayed, but the service name of the downstream call chain cannot be displayed, only the IP address can be displayed, The versions used are as follows: jdk 1.8.0_271 hbase-1.2.6 pinpoint-collector-boot-2.3.3 Can you advise if there's something wrong with my setup or if I need to start something extra? Thanks

20240507-170132

cuihao-ops avatar May 07 '24 09:05 cuihao-ops

The pinpoint agent must be installed on the downstream server to enable tracing.

emeroad avatar May 08 '24 00:05 emeroad

The pinpoint agent must be installed on the downstream server to enable tracing.

Hi, pinpoint-bootstrap-2.3.3 has been installed, The startup command is as follows, java -javaagent:/pinpoint-agent/pinpoint-bootstrap.jar -Dpinpoint.profiler.profiles.active=snapshot -Dpinpoint.applicationName=appname -Dpinpoint.agentId=appname -64b469895b-wsmfv

cuihao-ops avatar May 08 '24 01:05 cuihao-ops

The pinpoint agent must be installed on the downstream server to enable tracing.

Please help to see, I also have this problem, the downstream server is configured with pinpoint, but serverMap displays ip

xiaohongw avatar May 09 '24 09:05 xiaohongw

Only services with pinpoint agent installed can be traced.

A(with pinpoint agent) ----> B (no agent) In the above case, only service A can be monitored.

The supported libs are as follows. If you are using an unsupported lib, trace is not supported. https://github.com/pinpoint-apm/pinpoint/tree/master/agent-module/plugins

emeroad avatar May 09 '24 09:05 emeroad

Only services with pinpoint agent installed can be traced.

A(with pinpoint agent) ----> B (no agent) In the above case, only service A can be monitored.

The supported libs are as follows. If you are using an unsupported lib, trace is not supported. https://github.com/pinpoint-apm/pinpoint/tree/master/agent-module/plugins

image image

Hi, Here's our situation. A(with pinpoint agent) ----> B (with pinpoint agent) In the first picture is A, 13.110 is B's IP address. In the second picture is B and the corresponding 13.110 IP address.

This is our profile pinpoint.txt

spring-boot version is 2.1.6

cuihao-ops avatar May 10 '24 04:05 cuihao-ops

Which RPC library do you use?

https://github.com/pinpoint-apm/pinpoint?tab=readme-ov-file#supported-modules Apache HttpClient 3 / 4 / 5, JDK HttpConnector, GoogleHttpClient, OkHttpClient, NingAsyncHttpClient

Please check the support module above. If it is not a supported module, it may not be tracked.

emeroad avatar May 10 '24 07:05 emeroad

Thank you for your reply, it is indeed the client side of the problem, because we use springcloud default feign call, feign default use jdk built-in HttpURLConnection remote call, switch to okhttp is no problem, but due to the project changes larger, Can you support HttpURLConnection calls? Thank you very much if you can.

xiaohongw avatar May 11 '24 03:05 xiaohongw

image

xiaohongw avatar May 11 '24 03:05 xiaohongw

Which RPC library do you use?

https://github.com/pinpoint-apm/pinpoint?tab=readme-ov-file#supported-modules Apache HttpClient 3 / 4 / 5, JDK HttpConnector, GoogleHttpClient, OkHttpClient, NingAsyncHttpClient

Please check the support module above. If it is not a supported module, it may not be tracked.

image Hi, we are using springcloud gateway, Reactor Netty seems to be supported, but the IP address is also displayed

cuihao-ops avatar May 16 '24 07:05 cuihao-ops