This request returns historical statistics spanning the period of time [(current time – <duration>) to current time ] for a protected domain specified by ID for: FG rate, BG rate and outgoing data rate.

Usage:

GET on /domains/{id}/statistics/inoutrate?duration=<time>&max=<num_data_points>


Notes:
  * Time is in milliseconds.
  * num_data_points is the number of data points requested.
  * The time period of the report is calculated as follows:
       starting: (current time – <duration>)
       ending: (current time)

Request URL:

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

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],

  "start": 1562958473411,

  "end": 1563044873411,

  "trimmed": false

}