#1 and #4 are missing? If so, please repost the all? Thanks,
On Fri, 16 Jan 2015 10:02:08 +0900 Yusuke Iwase <[email protected]> wrote: > Signed-off-by: IWASE Yusuke <[email protected]> > --- > doc/source/app/ofctl_rest.rst | 57 > +++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 57 insertions(+) > > diff --git a/doc/source/app/ofctl_rest.rst b/doc/source/app/ofctl_rest.rst > index 3437e44..81baa96 100644 > --- a/doc/source/app/ofctl_rest.rst > +++ b/doc/source/app/ofctl_rest.rst > @@ -355,6 +355,63 @@ Get ports description > } > > > +Get queues stats > +---------------- > + > + Get queues stats of the switch which specified with Datapath ID in URI. > + > + Usage: > + > + ======= ==================== > + Method GET > + URI /stats/queue/<dpid> > + ======= ==================== > + > + Response message body: > + > + ============== > ============================================================= =========== > + Attribute Description > Example > + ============== > ============================================================= =========== > + dpid Datapath ID > "1" > + port_no Port number > 1 > + queue_id Queue ID > 0 > + tx_bytes Number of transmitted bytes > 0 > + tx_packets Number of transmitted packets > 0 > + tx_errors Number of packets dropped due to overrun > 0 > + duration_sec Time queue has been alive in seconds > 4294963425 > + duration_nsec Time queue has been alive in nanoseconds beyond > duration_sec 3912967296 > + ============== > ============================================================= =========== > + > + Example of use:: > + > + $ curl -X GET http://localhost:8080/stats/queue/1 > + > + :: > + > + { > + "1": [ > + { > + "port_no": 1, > + "queue_id": 0, > + "tx_bytes": 0, > + "tx_packets": 0, > + "tx_errors": 0, > + "duration_sec": 4294963425, > + "duration_nsec": 3912967296 > + }, > + { > + "port_no": 1, > + "queue_id": 1, > + "tx_bytes": 0, > + "tx_packets": 0, > + "tx_errors": 0, > + "duration_sec": 4294963425, > + "duration_nsec": 3912967296 > + } > + ] > + } > + > + > Get groups stats > ---------------- > > -- > 1.9.1 > > > ------------------------------------------------------------------------------ > New Year. New Location. New Benefits. New Data Center in Ashburn, VA. > GigeNET is offering a free month of service with a new server in Ashburn. > Choose from 2 high performing configs, both with 100TB of bandwidth. > Higher redundancy.Lower latency.Increased capacity.Completely compliant. > http://p.sf.net/sfu/gigenet > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel ------------------------------------------------------------------------------ New Year. New Location. New Benefits. New Data Center in Ashburn, VA. GigeNET is offering a free month of service with a new server in Ashburn. Choose from 2 high performing configs, both with 100TB of bandwidth. Higher redundancy.Lower latency.Increased capacity.Completely compliant. http://p.sf.net/sfu/gigenet _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
