Vidyashree Rama | 13b4c55 | 2016-06-20 15:12:43 +0530 | [diff] [blame] | 1 | submodule 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 | } |