diff options
author | John Southworth <john.southworth@vyatta.com> | 2012-02-22 08:49:05 -0800 |
---|---|---|
committer | John Southworth <john.southworth@vyatta.com> | 2012-02-22 08:49:05 -0800 |
commit | d1071c1207973ee37bbdbc90047f2a7b63ebb4ef (patch) | |
tree | 906d6cdf97646ff6ac151da5fdaef3122bddb3d4 | |
parent | 0714631e49c6cd616e8afa5fea21ccc0925a72ca (diff) | |
download | vyatta-op-d1071c1207973ee37bbdbc90047f2a7b63ebb4ef.tar.gz vyatta-op-d1071c1207973ee37bbdbc90047f2a7b63ebb4ef.zip |
Bugfix 2581: show protocol debugging summary with 'show monitoring'
-rw-r--r-- | templates/show/monitoring/node.def | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/show/monitoring/node.def b/templates/show/monitoring/node.def index 9c16edc..2e38feb 100644 --- a/templates/show/monitoring/node.def +++ b/templates/show/monitoring/node.def @@ -1,2 +1,7 @@ help: Show currently monitored services -run: ${vyatta_bindir}/vyatta-monitor-list +run: echo "Background monitoring sessions:" + ${vyatta_bindir}/vyatta-monitor-list + for proto in bgp ospf rip ospfv3 ripng; do + show monitoring protocols $proto + done + |