NFVBENCH-25 Send run results to fluentd
[nfvbench.git] / nfvbench / traffic_gen / traffic_utils.py
index e5dc463..d3def42 100644 (file)
@@ -39,9 +39,9 @@ def convert_rates(l2frame_size, rate, intf_speed):
 
     return {
         'initial_rate_type': initial_rate_type,
-        'rate_pps': pps,
+        'rate_pps': int(pps),
         'rate_percent': load,
-        'rate_bps': bps
+        'rate_bps': int(bps)
     }