blob: e78e58367706f22b5bc2fa4a32a84dd431d6cfac [file] [log] [blame]
Vidyashree Ramadeac28b2016-06-20 15:12:43 +05301module syslog1 {
2 yang-version 1;
3 namespace "http://huawei1.com";
4 prefix "sys1";
5
6 import "syslog2" {
7 prefix "sys2";
8 }
9
10 feature frr-te {
11 description "Indicates support for TE FastReroute (FRR)";
12 if-feature "sys2:p2mp-te";
13 }
14
15 container speed {
16 leaf local-storage-limit {
17 if-feature frr-te;
18 type uint64;
19 units "kilobyte";
20 config false;
21 description
22 "The amount of local storage that can be
23 used to hold syslog messages.";
24 }
25 }
26}