Collection - Get Average EPS

URI

https://164.99.19.131:8443/SentinelRESTServices/collection/eps

Supported Methods

GET

This brings average EPS, once per minute, over the past N minutes. If N is not specified, the value is assumed to be for the last minute. Each returned entry per time period consists of the average eps value for that time period, and the time period itself consisting of the number of milliseconds since 00:00:00 GMT on January 1, 1970.

Authentication

Not required.

URL Parameters

Required

ParameterTypeDescription
numberOfMinutes int Number of minutes to return average eps for.

Optional

None.

Success Codes

Fault Codes

Sample Request

GET /collection/eps
Sample Response for application/json
Status: 200
{"EpsHistory":{"Time":"1295628814525","Eps":"0"}}

Sample Request

GET /collection/eps?numberOfMinutes=3
Sample Response for application/json
Status: 200
{"EpsHistory":[{"Time":"1295628635168","Eps":"0"},{"Time":"1295628754525","Eps":"0"},{"Time":"1295628814525","Eps":"0"}]}