diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-09-26 19:46:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 19:46:01 +0200 |
commit | 2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2 (patch) | |
tree | 1e706656046ba616de3aa4c269fde3dda37b12d9 /interface-definitions/include/ids/threshold.xml.i | |
parent | 8f2f6303229814c03494369c51cedd31703406ec (diff) | |
parent | 67cf858c8727f7f232aa4648510335f2b2028aaa (diff) | |
download | vyos-1x-2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2.tar.gz vyos-1x-2cf6275eac10d7f7bfed70e374d2fb34eaf4a7c2.zip |
Merge pull request #1545 from sever-sever/T4557
ids: T4557: Migrate threshold and add new threshold types
Diffstat (limited to 'interface-definitions/include/ids/threshold.xml.i')
-rw-r--r-- | interface-definitions/include/ids/threshold.xml.i | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/interface-definitions/include/ids/threshold.xml.i b/interface-definitions/include/ids/threshold.xml.i new file mode 100644 index 000000000..e21e3a005 --- /dev/null +++ b/interface-definitions/include/ids/threshold.xml.i @@ -0,0 +1,38 @@ +<!-- include start from ids/threshold.xml.i --> +<leafNode name="fps"> + <properties> + <help>Flows per second</help> + <valueHelp> + <format>u32:0-4294967294</format> + <description>Flows per second</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967294"/> + </constraint> + </properties> +</leafNode> +<leafNode name="mbps"> + <properties> + <help>Megabits per second</help> + <valueHelp> + <format>u32:0-4294967294</format> + <description>Megabits per second</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967294"/> + </constraint> + </properties> +</leafNode> +<leafNode name="pps"> + <properties> + <help>Packets per second</help> + <valueHelp> + <format>u32:0-4294967294</format> + <description>Packets per second</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 0-4294967294"/> + </constraint> + </properties> +</leafNode> +<!-- include end --> |