diff options
author | Christian Breunig <christian@breunig.cc> | 2023-07-19 09:39:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-19 09:39:18 +0200 |
commit | 8cf1a827e09f57efd5a4c38226048d15ebbf4a21 (patch) | |
tree | d071233bcb1140264fef384e0eabd72ddf9c711f | |
parent | a5fd7c84a12aeb2b5312267c255e792e2b39adb7 (diff) | |
parent | 11adc97f0d54ae64f3d0573e808e63c3d9dfa54f (diff) | |
download | vyos-1x-8cf1a827e09f57efd5a4c38226048d15ebbf4a21.tar.gz vyos-1x-8cf1a827e09f57efd5a4c38226048d15ebbf4a21.zip |
Merge pull request #2095 from srividya0208/T5361
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> |