Amazon Forecast is no longer available to new customers. Existing customers of
Amazon Forecast can continue to use the service as normal.
Learn more"
ListMonitorEvaluations
Returns a list of the monitoring evaluation results and predictor events collected by the monitor resource during different windows of time.
Important
Amazon Forecast is no longer available to new customers. Existing customers of
Amazon Forecast can continue to use the service as normal.
Learn more"
For information about monitoring see Predictor Monitoring. For more information about retrieving monitoring results see Viewing Monitoring Results.
Request Syntax
{
"Filters": [
{
"Condition": "string
",
"Key": "string
",
"Value": "string
"
}
],
"MaxResults": number
,
"MonitorArn": "string
",
"NextToken": "string
"
}
Request Parameters
The request accepts the following data in JSON format.
- Filters
-
An array of filters. For each filter, provide a condition and a match statement. The condition is either
IS
orIS_NOT
, which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.Filter properties
-
Condition
- The condition to apply. Valid values areIS
andIS_NOT
. -
Key
- The name of the parameter to filter on. The only valid value isEvaluationState
. -
Value
- The value to match. Valid values are onlySUCCESS
orFAILURE
.
For example, to list only successful monitor evaluations, you would specify:
"Filters": [ { "Condition": "IS", "Key": "EvaluationState", "Value": "SUCCESS" } ]
Type: Array of Filter objects
Required: No
-
- MaxResults
-
The maximum number of monitoring results to return.
Type: Integer
Valid Range: Minimum value of 1. Maximum value of 100.
Required: No
- MonitorArn
-
The Amazon Resource Name (ARN) of the monitor resource to get results from.
Type: String
Length Constraints: Maximum length of 256.
Pattern:
arn:([a-z\d-]+):forecast:.*:.*:.+
Required: Yes
- NextToken
-
If the result of the previous request was truncated, the response includes a
NextToken
. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.Type: String
Length Constraints: Minimum length of 1. Maximum length of 3000.
Pattern:
.+
Required: No
Response Syntax
{
"NextToken": "string",
"PredictorMonitorEvaluations": [
{
"EvaluationState": "string",
"EvaluationTime": number,
"Message": "string",
"MetricResults": [
{
"MetricName": "string",
"MetricValue": number
}
],
"MonitorArn": "string",
"MonitorDataSource": {
"DatasetImportJobArn": "string",
"ForecastArn": "string",
"PredictorArn": "string"
},
"NumItemsEvaluated": number,
"PredictorEvent": {
"Datetime": number,
"Detail": "string"
},
"ResourceArn": "string",
"WindowEndDatetime": number,
"WindowStartDatetime": number
}
]
}
Response Elements
If the action is successful, the service sends back an HTTP 200 response.
The following data is returned in JSON format by the service.
- NextToken
-
If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.
Type: String
Length Constraints: Minimum length of 1. Maximum length of 3000.
Pattern:
.+
- PredictorMonitorEvaluations
-
The monitoring results and predictor events collected by the monitor resource during different windows of time.
For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.
Type: Array of PredictorMonitorEvaluation objects
Errors
- InvalidInputException
-
We can't process the request because it includes an invalid value or a value that exceeds the valid range.
HTTP Status Code: 400
- InvalidNextTokenException
-
The token is not valid. Tokens expire after 24 hours.
HTTP Status Code: 400
- ResourceNotFoundException
-
We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try again.
HTTP Status Code: 400
See Also
For more information about using this API in one of the language-specific AWS SDKs, see the following: