Skip to main content

monitor_evaluations

Creates, updates, deletes, gets or lists a monitor_evaluations resource.

Overview

Namemonitor_evaluations
TypeResource
Idaws.forecast.monitor_evaluations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
evaluation_statestringThe status of the monitor evaluation. The state can be SUCCESS or FAILURE.
evaluation_timestring (date-time)The timestamp that indicates when the monitor evaluation was started.
messagestringInformation about any errors that may have occurred during the monitor evaluation.
metric_resultsarrayA list of metrics Forecast calculated when monitoring a predictor. You can compare the value for each metric in the list to the metric's value in the Baseline to see how your predictor's performance is changing.
monitor_arnstringThe Amazon Resource Name (ARN) of the monitor resource. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>)
monitor_data_sourceobjectThe source of the data the monitor resource used during the evaluation.
num_items_evaluatedinteger (int64)The number of items considered during the evaluation.
predictor_eventobjectProvides details about a predictor event, such as a retraining.
resource_arnstringThe Amazon Resource Name (ARN) of the resource to monitor. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>)
window_end_datetimestring (date-time)The timestamp that indicates the end of the window that is used for monitor evaluation.
window_start_datetimestring (date-time)The timestamp that indicates the start of the window that is used for monitor evaluation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_monitor_evaluationsselectregionReturns a list of the monitoring evaluation results and predictor events collected by the monitor resource during different windows of time. For information about monitoring see predictor-monitoring. For more information about retrieving monitoring results see Viewing Monitoring Results.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of the monitoring evaluation results and predictor events collected by the monitor resource during different windows of time. For information about monitoring see predictor-monitoring. For more information about retrieving monitoring results see Viewing Monitoring Results.

SELECT
evaluation_state,
evaluation_time,
message,
metric_results,
monitor_arn,
monitor_data_source,
num_items_evaluated,
predictor_event,
resource_arn,
window_end_datetime,
window_start_datetime
FROM aws.forecast.monitor_evaluations
WHERE region = '{{ region }}' -- required
;