diff options
author | srividya0208 <a.srividya@vyos.io> | 2023-07-18 02:40:36 -0400 |
---|---|---|
committer | srividya0208 <a.srividya@vyos.io> | 2023-07-18 02:40:36 -0400 |
commit | 11adc97f0d54ae64f3d0573e808e63c3d9dfa54f (patch) | |
tree | b4a8e5da98b80cc8bc4b7bcae51b2e0541a629f0 | |
parent | b2ffdb756f797787a639343bebb02e327e54483c (diff) | |
download | vyos-1x-11adc97f0d54ae64f3d0573e808e63c3d9dfa54f.tar.gz vyos-1x-11adc97f0d54ae64f3d0573e808e63c3d9dfa54f.zip |
T5361:op_cmd monitor log vrrp: doesn't show last lines
-rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 2e5439414..8f3f73478 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -312,19 +312,19 @@ <properties> <help>Monitor last lines of Vector Packet Processor log</help> </properties> - <command>journalctl --no-hostname --boot --unit vpp.service</command> + <command>journalctl --no-hostname --boot --follow --unit vpp.service</command> </leafNode> <leafNode name="vrrp"> <properties> <help>Monitor last lines of Virtual Router Redundancy Protocol log</help> </properties> - <command>journalctl --no-hostname --boot --unit keepalived.service</command> + <command>journalctl --no-hostname --boot --follow --unit keepalived.service</command> </leafNode> <leafNode name="webproxy"> <properties> <help>Monitor last lines of Webproxy log</help> </properties> - <command>journalctl --no-hostname --boot --unit squid.service</command> + <command>journalctl --no-hostname --boot --follow --unit squid.service</command> </leafNode> </children> </node> |