OpenFlow Spec 1.5 introduces OpenFlow eXtensible Statistics (OXS). These patches add OFStats class in order to support OXS class parse/serialization.
TODO: - Implementation for specific OXS Experimenter classes support, if exist. (eg. ONF Experimenter, Nicira Experimenter) - To use OXS in all messages carrying flow entry statistics. (flow removed message, flow statistics multipart, flow aggregate mutipart) - To rename existing flow statistics as flow description and to fix to use OXS. IWASE Yusuke (4): oxs_fields: Add OXS class support test_oxs: Add unit test for oxs_fields.py ofproto_v1_5_parser: Add OPFStats parser for Flow Stats Structures test_parser_ofpstats: Add unit test for OFPStats class ryu/ofproto/ofproto_v1_5.py | 30 ++- ryu/ofproto/ofproto_v1_5_parser.py | 136 ++++++++++ ryu/ofproto/oxs_fields.py | 352 +++++++++++++++++++++++++ ryu/tests/unit/ofproto/test_oxs.py | 116 ++++++++ ryu/tests/unit/ofproto/test_parser_ofpstats.py | 203 ++++++++++++++ 5 files changed, 829 insertions(+), 8 deletions(-) create mode 100644 ryu/ofproto/oxs_fields.py create mode 100644 ryu/tests/unit/ofproto/test_oxs.py create mode 100644 ryu/tests/unit/ofproto/test_parser_ofpstats.py -- 1.9.1 ------------------------------------------------------------------------------ One dashboard for servers and applications across Physical-Virtual-Cloud Widest out-of-the-box monitoring support with 50+ applications Performance metrics, stats and reports that give you Actionable Insights Deep dive visibility with transaction tracing using APM Insight. http://ad.doubleclick.net/ddm/clk/290420510;117567292;y _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
