summaryrefslogtreecommitdiff
path: root/op-mode-definitions/monitor-log.xml.in
blob: 7ecce4f788cbb96e43f2d3fc14e19f756af31267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="monitor">
    <children>
      <node name="log">
        <properties>
          <help>Monitor last lines of messages file</help>
        </properties>
        <command>journalctl --no-hostname --follow --boot</command>
        <children>
          <node name="colored">
            <properties>
              <help>Output log in a colored fashion</help>
            </properties>
            <command>grc journalctl --no-hostname --follow --boot</command>
          </node>
          <node name="dhcp">
            <properties>
              <help>Monitor last lines of Dynamic Host Control Protocol (DHCP)</help>
            </properties>
            <children>
              <node name="server">
                <properties>
                  <help>Monitor last lines of DHCP server</help>
                </properties>
                <command>journalctl --no-hostname --follow --boot --unit isc-dhcp-server.service</command>
              </node>
              <node name="client">
                <properties>
                  <help>Monitor last lines of DHCP client</help>
                </properties>
                <command>journalctl --no-hostname --follow --boot --unit "dhclient@*.service"</command>
                <children>
                  <tagNode name="interface">
                    <properties>
                      <help>Show DHCP client log on specific interface</help>
                      <completionHelp>
                        <script>${vyos_completion_dir}/list_interfaces.py --broadcast</script>
                      </completionHelp>
                    </properties>
                    <command>journalctl --no-hostname --follow --boot --unit "dhclient@$6.service"</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
          <node name="dhcpv6">
            <properties>
              <help>Monitor last lines of Dynamic Host Control Protocol IPv6 (DHCPv6)</help>
            </properties>
            <children>
              <node name="server">
                <properties>
                  <help>Monitor last lines of DHCPv6 server</help>
                </properties>
                <command>journalctl --no-hostname --follow --boot --unit isc-dhcp-server6.service</command>
              </node>
              <node name="client">
                <properties>
                  <help>Monitor last lines of DHCPv6 client</help>
                </properties>
                <command>journalctl --no-hostname --follow --boot --unit "dhcp6c@*.service"</command>
                <children>
                  <tagNode name="interface">
                    <properties>
                      <help>Show DHCPv6 client log on specific interface</help>
                      <completionHelp>
                        <script>${vyos_completion_dir}/list_interfaces.py</script>
                      </completionHelp>
                    </properties>
                    <command>journalctl --no-hostname --follow --boot --unit "dhcp6c@$6.service"</command>
                  </tagNode>
                </children>
              </node>
            </children>
          </node>
          <leafNode name="flow-accounting">
            <properties>
              <help>Monitor last lines of flow-accounting log</help>
            </properties>
            <command>journalctl --no-hostname --boot --follow --unit uacctd.service</command>
          </leafNode>
          <leafNode name="kernel">
            <properties>
              <help>Monitor last lines of Linux Kernel log</help>
            </properties>
            <command>journalctl --no-hostname --boot --follow --dmesg</command>
          </leafNode>
          <leafNode name="nhrp">
            <properties>
              <help>Monitor last lines of NHRP log</help>
            </properties>
            <command>journalctl --no-hostname --boot --unit opennhrp.service</command>
          </leafNode>
          <node name="pppoe">
            <properties>
              <help>Monitor last lines of PPPoE log</help>
            </properties>
            <command>journalctl --no-hostname --boot --follow --unit "ppp@pppoe*.service"</command>
            <children>
              <tagNode name="interface">
                <properties>
                  <help>Monitor last lines of PPPoE log for specific interface</help>
                  <completionHelp>
                    <script>${vyos_completion_dir}/list_interfaces.py -t pppoe</script>
                  </completionHelp>
                </properties>
                <command>journalctl --no-hostname --boot --follow --unit "ppp@$6.service"</command>
              </tagNode>
            </children>
          </node>
          <node name="protocol">
            <properties>
              <help>Monitor log for Routing Protocols</help>
            </properties>
            <children>
              <leafNode name="ospf">
                <properties>
                  <help>Monitor log for OSPF</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/ospfd</command>
              </leafNode>
              <leafNode name="ospfv3">
                <properties>
                  <help>Monitor log for OSPF for IPv6</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/ospf6d</command>
              </leafNode>
              <leafNode name="bgp">
                <properties>
                  <help>Monitor log for BGP</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/bgpd</command>
              </leafNode>
              <leafNode name="rip">
                <properties>
                  <help>Monitor log for RIP</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/ripd</command>
              </leafNode>
              <leafNode name="ripng">
                <properties>
                  <help>Monitor log for RIPng</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/ripngd</command>
              </leafNode>
              <leafNode name="static">
                <properties>
                  <help>Monitor log for static route</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/staticd</command>
              </leafNode>
              <leafNode name="multicast">
                <properties>
                  <help>Monitor log for Multicast protocol</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/pimd</command>
              </leafNode>
              <leafNode name="isis">
                <properties>
                  <help>Monitor log for ISIS</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/isisd</command>
              </leafNode>
              <leafNode name="nhrp">
                <properties>
                  <help>Monitor log for NHRP</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/nhrpd</command>
              </leafNode>
              <leafNode name="bfd">
                <properties>
                  <help>Monitor log for BFD</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/bfdd</command>
              </leafNode>
              <leafNode name="mpls">
                <properties>
                  <help>Monitor log for MPLS</help>
                </properties>
                <command>journalctl --follow --no-hostname --boot /usr/lib/frr/ldpd</command>
              </leafNode>
            </children>
          </node>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>