diff options
author | zsdc <taras@vyos.io> | 2021-12-07 22:41:27 +0200 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2021-12-07 22:44:34 +0200 |
commit | ac73200e4f0cf4020dfcd0a11e6004bca479253f (patch) | |
tree | c5478ea432686c46d2a17913828efd573185faa7 /interface-definitions/system-logs.xml.in | |
parent | 7ac6b589e3827ea6ff8e796bb6617c021cf26bca (diff) | |
download | vyos-1x-ac73200e4f0cf4020dfcd0a11e6004bca479253f.tar.gz vyos-1x-ac73200e4f0cf4020dfcd0a11e6004bca479253f.zip |
logs: T3774: Added CLI options to control atop logs rotation
Added CLI options to generate logrotate configuration file for atop logs
Diffstat (limited to 'interface-definitions/system-logs.xml.in')
-rw-r--r-- | interface-definitions/system-logs.xml.in | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/interface-definitions/system-logs.xml.in b/interface-definitions/system-logs.xml.in new file mode 100644 index 000000000..677f476ff --- /dev/null +++ b/interface-definitions/system-logs.xml.in @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interfaceDefinition> + <node name="system"> + <children> + <node name="logs" owner="${vyos_conf_scripts_dir}/system-logs.py"> + <properties> + <help>Logging options</help> + <priority>9999</priority> + </properties> + <children> + <node name="logrotate"> + <properties> + <help>Logrotate options</help> + </properties> + <children> + <node name="atop"> + <properties> + <help>Atop logs options</help> + </properties> + <children> + <leafNode name="maxsize"> + <properties> + <help>Size of a single log file that triggers rotation</help> + <valueHelp> + <format>u32:1-1024</format> + <description>Size in MB</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-1024" /> + </constraint> + <constraintErrorMessage>The size must be between 1 and 1024 MB</constraintErrorMessage> + </properties> + <defaultValue>10</defaultValue> + </leafNode> + <leafNode name="rotate"> + <properties> + <help>Count of rotations before old logs will be deleted</help> + <valueHelp> + <format>u32:1-100</format> + <description>Rotations</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-100" /> + </constraint> + <constraintErrorMessage>The count must be between 1 and 100</constraintErrorMessage> + </properties> + <defaultValue>10</defaultValue> + </leafNode> + </children> + </node> + </children> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |