diff options
author | Christian Breunig <christian@breunig.cc> | 2025-05-04 11:19:21 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2025-05-04 11:19:21 +0200 |
commit | cf2e7c56ee14f7902e42b2131ea75968888d6091 (patch) | |
tree | 2007ce1d498e45b078b29fd6e020b5b6060db6e0 /op-mode-definitions | |
parent | f8b0d74eecabdd16cb0cd6239c8095ed6d2321e3 (diff) | |
download | vyos-1x-cf2e7c56ee14f7902e42b2131ea75968888d6091.tar.gz vyos-1x-cf2e7c56ee14f7902e42b2131ea75968888d6091.zip |
op-mode: T7122: add "show|monitor log haproxy" commands
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/monitor-log.xml.in | 6 | ||||
-rwxr-xr-x | op-mode-definitions/show-log.xml.in | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/op-mode-definitions/monitor-log.xml.in b/op-mode-definitions/monitor-log.xml.in index 91e1c93ef..a6aa6f05e 100644 --- a/op-mode-definitions/monitor-log.xml.in +++ b/op-mode-definitions/monitor-log.xml.in @@ -107,6 +107,12 @@ </properties> <command>journalctl --no-hostname --boot --follow --unit frr.service</command> </leafNode> + <leafNode name="haproxy"> + <properties> + <help>Monitor last lines of HAProxy log</help> + </properties> + <command>journalctl --no-hostname --boot --follow --unit haproxy.service</command> + </leafNode> <leafNode name="ipoe-server"> <properties> <help>Monitor last lines of IP over Ethernet server log</help> diff --git a/op-mode-definitions/show-log.xml.in b/op-mode-definitions/show-log.xml.in index ee2e2bf70..c2bc03910 100755 --- a/op-mode-definitions/show-log.xml.in +++ b/op-mode-definitions/show-log.xml.in @@ -559,6 +559,12 @@ </properties> <command>journalctl --no-hostname --boot --unit frr.service</command> </leafNode> + <leafNode name="haproxy"> + <properties> + <help>Show log for HAProxy</help> + </properties> + <command>journalctl --no-hostname --boot --unit haproxy.service</command> + </leafNode> <leafNode name="https"> <properties> <help>Show log for HTTPs</help> |