diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2016-12-08 16:49:00 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-12-10 15:29:37 +0900 |
commit | e0c446a6b43a12f33e1cbb211584e928fffbfc71 (patch) | |
tree | c0b8694dfb29c3f29f9324ae7418cce7bebeb580 /doc/source | |
parent | 002cbbe1ecd002f06258d37d7c2accb9e8cc9d7e (diff) |
lib/ofctl_v_*: Enable to filter flow stats by priority
OpenFlow Spec does not allow to filter flow entries by priority,
but when with a large amount of flow entries, filtering by priority
is convenient to get statistics efficiently.
This patch enables lib/ofctl_v_* modules to filter flow stats by
priority.
This patch is suggested by China Shenzhen TICOMM Information
Technology Co. Ltd.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/app/ofctl_rest.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst index c69692c5..03f4b29f 100644 --- a/doc/source/app/ofctl_rest.rst +++ b/doc/source/app/ofctl_rest.rst @@ -248,8 +248,17 @@ Get flows stats filtered by fields cookie Require matching entries to contain this cookie value (int) 1 0 cookie_mask Mask used to restrict the cookie bits that must match (int) 1 0 match Fields to match (dict) {"in_port": 1} {} #wildcarded + priority Priority of the entry (int) (See Note) 11111 #wildcarded ============ ================================================================== =============== =============== + .. NOTE:: + + OpenFlow Spec does not allow to filter flow entries by priority, + but when with a large amount of flow entries, filtering by priority + is convenient to get statistics efficiently. + So, this app provides priority field for filtering. + + Response message body: The same as :ref:`get-all-flows-stats` |