Get Protected Domain RPO Distribution Statistics (Since Last Duration)
This request returns recovery point objective (RPO) distribution statistics of a protected domain specified by ID spanning the period of time [(current time – <duration>) to current time ].
Usage:
GET on /domains/{id}/statistics/rpo?duration=<time>
Notes:
* Time is in milliseconds.
* 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/rpo
Header:
fios-session:vc_sessionId
Request:
N/A
Response:
{
"start": "1562932411209",
"dist": [{
"from": 0,
"to": 5,
"percent": 70
},
{
"from": 5,
"to": 10,
"percent": 25
},
{
"from": 10,
"to": 15,
"percent": 3
},
{
"from": 15,
"to": 30,
"percent": 2
},
{
"from": 30,
"to": 60,
"percent": 0
},
{
"from": 60,
"to": 600,
"percent": 0
},
{
"from": 600,
"to": 1800,
"percent": 0
},
{
"from": 1800,
"to": 3600,
"percent": 0
},
{
"from": 3600,
"to": 7200,
"percent": 0
},
{
"from": 7200,
"to": null,
"percent": 0
}
]
}