I need to set a friendly name for my connection as below instead of "?" in RabbitMQ for amqplib for NodeJS:
I found examples with Java and Python but nothing yet with this library. Thanks.
Yes you can set the connection name by passing it in the client properties:
amqp.connect('amqp://localhost', {clientProperties: {connection_name: "myFriendlyName"}})
For reference: