Closed janfreymann closed 4 years ago
PR is welcome
Hi, when trying to create a PR, I noticed that the issue is not with the URLParser, but rather with the underlying Hikari Pool. When the ConnectionInfo
asks for the URL, it gets the **internally_generated**1598275417336**
bit directly from the Hikari proxy connection, so nothing to to about it here.
So I think we can close the issue here...
Hi,
first of all, thanks for the great implementation of Jaeger integration for Spring Boot. It is very easy to integrate and useful for our project.
I noticed for one Spring Boot based service that connects to a cluster of database instances that the
URLParser
of Jdbc is not able to handle the following JDBC URL format:If the
:replication
part of the URL is omitted, the tagpeer.address
is set correctly, if not, it has a value like**internally_generated**1598275417336**:3306
, which messes up the System Architecture view in the Jaeger frontend because the peer address is not unique any more (the number 1598... is a timestamp).Is it possible to fix the parser or somehow override the
peer.address
orConnectionInfo
data from the application?