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
In the ConnectionFactory factory = new ConnectionFactory(); on the official .net C# version you can specify Client-Provided Connection Name. This would be a useful enhancement as it would allow me to specify more information to the RabbitMQ Dashboard to identify unwanted connections while testing.
Bellow is the official example from RabbitMq documentation.
ConnectionFactoryfactory=newConnectionFactory();// "guest"/"guest" by default, limited to localhost connectionsfactory.UserName=user;factory.Password=pass;factory.VirtualHost=vhost;factory.HostName=hostName;// this name will be shared by all connections instantiated by// this factoryfactory.ClientProvidedName="app:audit component:event-consumer";IConnectionconn=factory.CreateConnection();
The text was updated successfully, but these errors were encountered:
In the ConnectionFactory factory = new ConnectionFactory(); on the official .net C# version you can specify Client-Provided Connection Name. This would be a useful enhancement as it would allow me to specify more information to the RabbitMQ Dashboard to identify unwanted connections while testing.
Bellow is the official example from RabbitMq documentation.
The text was updated successfully, but these errors were encountered: