[
https://issues.apache.org/jira/browse/DISPATCH-1411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16952062#comment-16952062
]
ASF GitHub Bot commented on DISPATCH-1411:
------------------------------------------
kgiusti commented on 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_r335039588
##########
File path: tools/qdstat.in
##########
@@ -687,49 +756,59 @@ class BusManager(Node):
return has_nodes, all_nodes
- def show_entity(self, main):
- if main == 'l': self.displayRouterLinks()
- elif main == 'n': self.displayRouterNodes()
- elif main == 'a': self.displayAddresses()
- elif main == 'm': self.displayMemory()
- elif main == 'g': self.displayGeneral()
- elif main == 'e': self.displayEdges()
- elif main == 'c': self.displayConnections()
- elif main == 'autolinks': self.displayAutolinks()
- elif main == 'linkroutes': self.displayLinkRoutes()
+ def show_entity(self, main, show_date_id=True):
+ if main == 'l': self.displayRouterLinks(show_date_id)
+ elif main == 'n': self.displayRouterNodes(show_date_id)
+ elif main == 'a': self.displayAddresses(show_date_id)
+ elif main == 'm': self.displayMemory(show_date_id)
+ elif main == 'g': self.displayGeneral(show_date_id)
+ elif main == 'e': self.displayEdges(show_date_id)
+ elif main == 'c': self.displayConnections(show_date_id)
+ elif main == 'autolinks': self.displayAutolinks(show_date_id)
+ elif main == 'linkroutes': self.displayLinkRoutes(show_date_id)
elif main == 'log': self.displayLog()
def all_routers_entities(self):
has_nodes, nodes = self.has_nodes()
+
if has_nodes:
for node in nodes:
+ # We already have more than one node, just print the
+ # router id here instead of asking the router for it.
super(BusManager, self).set_client(node[6:])
parts = node.split("/")
- print ("Router ", parts[3])
- self.show_all()
+ print (str(datetime.utcnow()) + " UTC")
+ print(parts[3])
+ print ("")
Review comment:
nope
----------------------------------------------------------------
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]
> Add timestamp and router name to header of qdstat output
> --------------------------------------------------------
>
> Key: DISPATCH-1411
> URL: https://issues.apache.org/jira/browse/DISPATCH-1411
> Project: Qpid Dispatch
> Issue Type: Improvement
> Components: Tools
> Affects Versions: 1.8.0
> Reporter: Ken Giusti
> Assignee: Ganesh Murthy
> Priority: Major
> Labels: troubleshooting
>
> Add a timestamp and the router's id to the header of the output of qdstat.
> This will allow us to correlate qdstat output with router log files.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]