Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Find Connected MQTT Client Details

Tags:

mqtt

Is there any way we can find about all the connected client details(IP & name) from another client? I know there is a topic "$SYS/broker/clients/active" which gives the number of currently connected clients but if I want to know more about each connected client, is there any way?

I'm developing a solution where number of client will be connected (using Wireless network) to MQTT broker located on a server. I will also have another client running on the same machine and connected to the broker which will observe if any new client connected with the broker or for a gets disconnected client. I can see message on broker console when a new client connects or connected client gets disconnected. Can we get something similar from a client connected to the broker? Please suggest what would be the best possible way to achieve this?

Thanks in advance.

-Dilip

like image 473
Dilip Avatar asked Sep 27 '13 18:09

Dilip


People also ask

How do I check my MQTT client?

In the AWS IoT console , in the left menu, choose Test and then choose MQTT test client. In the Subscribe to a topic tab, enter the topicName to subscribe to the topic on which your device publishes. For the getting started sample app, subscribe to # , which subscribes to all message topics.

What is client connection status in MQTT?

The MQTT connection is always between one client and the broker. Clients never connect to each other directly. To initiate a connection, the client sends a CONNECT message to the broker. The broker responds with a CONNACK message and a status code.

How do I check my Mosquitto connection?

If you are using Windows, open up a command prompt and type 'netstat -an'. If your server is running, you should be able to see the port 1883. If you cannot go to Task Manager > Services and start/restart the Mosquitto server from there.


2 Answers

Your original question, nor responses to subsequent questions identify which broker implementation you are using. So there may be a more efficient answer to your question.

Without that information, let's focus on what you can do in the protocol itself.

MQTT supports RETAINED messages. This is where the broker will store the most recent retained message against each topic. When a client subscribes to the topic, it will receive the retained message (if one exists).

There is also the Last Will and Testament (LWT) feature (that goetzchr refers to), that can be used to publish a message on behalf of the client if it abnormally disconnects.

Combining these two features allows you to build a simple presence service on the broker, all within the protocol. It works like this:

  1. when a client connects, it publishes a RETAINED message to a topic unique to it, for example:

    clients/my_client_id/state

    with a payload of 1. (substituting my_client_id with the client's own id.

  2. it also, on connect, sets a LWT message to be published to the same topic, but with a payload of 0. This should also be a RETAINED message.

  3. when a client disconnects cleanly, it publishes a RETAINED message to the same topic with a payload of 0

This allows another client to subscribe to clients/# to receive all the messages indicating the changes in clients' connection state (the full topic identifying the client, and the value of the payload indicating the connection state).

To obtain more information than just connected state, the clients can publish another retained message on connect, to another topic, eg clients/my_client_id/info that contains all of the information you're interested in.

This only works if you have control of all the clients that are connecting to your broker and able to get them to behave like this.

This is not an ideal approach; hopefully your broker implementation will provide some server-side means of doing this.

like image 180
knolleary Avatar answered Oct 18 '22 22:10

knolleary


like Knolleary already stated this is implementation specific and not provided by MQTT itself.

One solution could be to use the HiveMQ MQTT broker. It has a Plugin SDK, which allows you to do such customization over callbacks, meaning every time a client connects, disconnects, send a message, subscribes to a message you can execute custom code, like in your case sending an email. When writing your custom code you can access all information about the client, which has invoked the callback. So it would be easy to implement your behavior. The only thing is where do you store the email address? Is it the username?

For more information on writing custom HiveMQ plugins see the getting started guide and the example plugin on GitHub

(Disclosure: I'm one of the HiveMQ developers)

Cheers, Chris

like image 29
Christian Götz Avatar answered Oct 18 '22 22:10

Christian Götz