Hi,

I am trying to figure out how many bytes were received from a certain server 
over a period of time (e.g. this month).

I've got derivates (bytes/sec) or differences (total per slice of time) to 
work, e.g.:
SELECT derivative("bytes_recv")/(1024*1024*1024) FROM "net" WHERE ...
or 
SELECT difference("bytes_recv")/(1024*1024*1024) FROM "net" WHERE ...

but I what I would like would be (maybe?) something like:
SELECT sum(difference("bytes_recv"))/(1024*1024*1024) FROM "net" WHERE ...
which does not work

Any other suggestion to retrieve a simple total number of bytes? :-)
Thank you.

Best regards,
Eurico

-- 
Remember to include the InfluxDB version number with all issue reports
--- 
You received this message because you are subscribed to the Google Groups 
"InfluxDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/influxdb.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/influxdb/c2674c13-ee36-483d-92b7-771c12316dec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to