This request returns FG rate, BG rate and outgoing data rate statistics of a protected domain specified by ID for a custom time range.

Usage:

GET on /domains/{id}/statistics/inoutratecustom?start=<time>&end=<time>&max=<num_data_points>


Notes:
  * Time is unix epoch time in milliseconds.
  * num_data_points is the number of data points requested.
  * If only start is specified, the statistics that occurred at or after the given time are returned.
  * Both start and end are inclusive.

Request URL:

https://<MS hostname>/jss/domains/{id}/statistics/inoutratecustom

Header:

fios-session:vc_sessionId

Request:

N/A

Response:

{

  "unixTimeMs": [1562958488829, 1562958518314, 1562958548452],

  "fgKBps": [3686, 2047, 5323],

  "bgKBps": [2118, 2579, 4201],

  "outKBps": [5270, 5109, 5363],

  "replKBps": [2559, 2511, 2687],

  "bitmapMode": [0, 0, 1],

  "trimmed": false

}