Hello
I am trying to parse the total data used in a specific month (for billing purposes). From what i've read, the historicdata should be able to offer me that.
Which provides daily results in the format:
array(6) { ["datetime"]=> string(9) "24-2-2016" ["datetime_raw"]=> float(42424.958333333) ["value"]=> string(3) "0 %" ["value_raw"]=> float(0) ["coverage"]=> string(5) "100 %" ["coverage_raw"]=> int(9999) }
How can i get the total (in TB/GB/Bytes) for input, output in the specified period?
From what i've seen, the value is always 0% and value_raw=0 although the graphical interface shows a lot of traffic.
Thank you
Add comment