Dear all, Sorry to bother you.
I have another question about how to collect the information of queue in openvswitch. I am trying to monitor the status of ports of openvswitch. So I used the queues configured at each port of openvswitch to queue packets for different applications. I use the ovs-vsctl tool for configuring the queues as: sudo ovs-vsctl -- set port eth1 qos=@newqos \ -- --id=@newqos create qos type=linux-htb other-config:min-rate=0 queues=0=@q0,\ -- --id=@q0 create queue other-config:min-rate=0 Now, my question is I don't know which command should be used to connect the openvswitch and collect the status of queue just like the length of queue, the packets which received and sent and so on. And which event should be used to deal with the reply of openvswitch about queue status? Thanks!
