You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client provided connection name is very useful to identify connections in Management UI and during debugging sessions. In the Java Client, it's quite easy to set a client provided name with ConnectionFactory.newConnection(string clientName). In this client, a user has to set a configuration property with a specific name, for example:
This isn't great because the user is required to know the property key connection_name and the Properties map has to be crafted manually.
We should either provide a simple function like amqp.SetConnectionName(amqp.Config, string), or a constant with the connection name key (and any other well-known properties).
The text was updated successfully, but these errors were encountered:
The client provided connection name is very useful to identify connections in Management UI and during debugging sessions. In the Java Client, it's quite easy to set a client provided name with
ConnectionFactory.newConnection(string clientName)
. In this client, a user has to set a configuration property with a specific name, for example:This isn't great because the user is required to know the property key
connection_name
and theProperties
map has to be crafted manually.We should either provide a simple function like
amqp.SetConnectionName(amqp.Config, string)
, or a constant with the connection name key (and any other well-known properties).The text was updated successfully, but these errors were encountered: