File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,13 @@ class BwVerb(VerbExtension):
6262 """Display bandwidth used by topic."""
6363
6464 def add_arguments (self , parser , cli_name ):
65+ parser .description = (
66+ 'Display bandwidth used by topic.\n \n '
67+ 'note:\n '
68+ ' This bandwidth reflects the receiving rate on subscription, '
69+ 'which might be affected by platform resources and QoS configuration, '
70+ "and may not exactly match the publisher's bandwidth."
71+ )
6572 arg = parser .add_argument (
6673 'topic_name' ,
6774 help = 'Topic name to monitor for bandwidth utilization' )
Original file line number Diff line number Diff line change 5454
5555
5656class HzVerb (VerbExtension ):
57- """Print the average publishing rate to screen."""
57+ """Print the average receiving rate to screen."""
5858
5959 def add_arguments (self , parser , cli_name ):
60+ parser .description = (
61+ 'Print the average receiving rate to screen.\n \n '
62+ 'note:\n '
63+ ' This rate reflects the receiving rate on subscription, '
64+ 'which might be affected by platform resources and QoS configuration, '
65+ "and may not exactly match the publisher's rate."
66+ )
6067 arg = parser .add_argument (
6168 'topic_name' ,
6269 nargs = '+' ,
You can’t perform that action at this time.
0 commit comments