[ovs-dev] [resubmit 2/4] ofproto: Display idle time in bridge/dump-flows.

Ethan Jackson ethan at nicira.com
Mon Feb 14 23:39:29 UTC 2011


---
 ofproto/ofproto.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c
index 88cae75..589f80c 100644
--- a/ofproto/ofproto.c
+++ b/ofproto/ofproto.c
@@ -3664,6 +3664,7 @@ flow_stats_ds(struct ofproto *ofproto, struct rule *rule, struct ds *results)
 
     ds_put_format(results, "duration=%llds, ",
                   (time_msec() - rule->created) / 1000);
+    ds_put_format(results, "idle=%.3fs, ", (time_msec() - rule->used) / 1000.0);
     ds_put_format(results, "priority=%u, ", rule->cr.priority);
     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
-- 
1.7.4





More information about the dev mailing list