kgiusti commented on a change in pull request #586: DISPATCH-1411 - Added UTC
datetime and router id to all options of qd…
URL: https://github.com/apache/qpid-dispatch/pull/586#discussion_r335039137
##########
File path: tools/qdstat.in
##########
@@ -667,14 +723,27 @@ class BusManager(Node):
for line in log:
print("%s %s (%s) %s" % (ctime(line[5]), line[0], line[1],
line[2]))
- def show_all(self):
- self.displayRouterLinks()
- self.displayAddresses()
- self.displayConnections()
- self.displayAutolinks()
- self.displayLinkRoutes()
- self.displayGeneral()
- self.displayMemory()
+ def show_all(self, show_summary=True):
+ if show_summary:
+ # print the datetime and router id
+ print (str(datetime.utcnow()) + " UTC")
+ self.displayRouterId()
+ print ("")
Review comment:
and here!
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]