blob: 09b8b37cb0ef3b14541c8deca7134f2bc8d7c356 [file] [log] [blame]
Vidyashree Ramadeac28b2016-06-20 15:12:43 +05301submodule syslog {
2 yang-version 1;
3 belongs-to "syslog1" {
4 prefix "sys";
5 }
6 feature local-storage {
7 description
8 "This feature means the device supports local
9 storage (memory, flash or disk) that can be used to
10 store syslog messages.";
11 }
12
13 container speed {
14 leaf local-storage-limit {
15 if-feature local-storage;
16 type uint64;
17 units "kilobyte";
18 config false;
19 description
20 "The amount of local storage that can be
21 used to hold syslog messages.";
22 }
23 }
24}