Resolve "DataCollector accumulated data bugs"
Closes #327 (closed)
- The DataCollector sets for example
Response.accumulated_network_usage.sent_b_wo_admin.rate
to0
instead ofNone
while there is no old enough data to calculate the rate. Therefore (because the DataCollector provides wrong values) the gui displays0 MB/s
as rate, which shouldn't be the case. - The Responses
Response.accumulated_network_usage
attribute isNone
in around 50% of requests, althoughaccumulated_network_usage
is continuously requested (not only on startup, but the whole time).
Edited by Christian Dreher