0
我想通過下面的RPC調用來獲取統計信息,而不是通過默認的統計管理器。OpenDaylight使用RPC調用的流量統計
POST/restconf/operations/opendaylight - flow - statistics: get - all - flows - statistics - from - all - flow - tables {
"input": {
"node": "/opendaylight-inventory:nodes/opendaylight-inventory:node[opendaylight-inventory:id=\"openflow:1000\"]"
}
}
但是,該請求的響應僅爲transaction-id
。雖然我可以看到OpenFlow Flow Stat Request
和Flow Stat Reply
消息在控制器和交換機之間交換,但操作數據存儲似乎不會因調用上述RPC而更新。
GET /restconf/operational/opendaylight-inventory:nodes/node/openflow:1000/table/0
我的問題是::
- 我怎樣才能通過交換機發送到控制器上面RPC(
get-all-flows-statistics-from-all-flow-tables
)的結果的流量統計我使用檢查操作數據存儲?爲什麼操作數據存儲沒有更新?
謝謝!邁克爾。