I have a query which I am running:
python rabbitmqadmin -H xxxxxxxxxx -P 443 -u xxxxxxxxxx -p xxxxxxxxxxx -s list nodes name type running uptime
and I am getting back:
+------------------+------+---------+----------+
| name | type | running | uptime |
+------------------+------+---------+----------+
| rabbit@localhost | disc | True | 69193749 |
+------------------+------+---------+----------+
What format is the field uptime in? How long is 69193749? Is that in milliseconds?
It is in milliseconds.
You can use one of the methods here to get the time in seconds and then you can compare to your command, e.g.
I also tried restarting the server and run the command a few times in succession, and that confirmed it is in milliseconds.
Then running the previously suggested command
now gave me
seconds.
It is interesting I also tried
rabbitmqadmin --helpbut I could not find information about the format there, nor when I googled the problem, so a very valid question.