Skip to main content

sensor_statistics

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

Overview

Namesensor_statistics
TypeResource
Idaws.lookoutequipment.sensor_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringAn opaque pagination token indicating where to continue the listing of sensor statistics. (pattern: <code>\p{ASCII}{0,8192}</code>)
sensor_statistics_summariesarrayProvides ingestion-based statistics regarding the specified sensor with respect to various validation types, such as whether data exists, the number and percentage of missing values, and the number and percentage of duplicate timestamps.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sensor_statisticsselectregionLists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job.

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

Lists statistics about the data collected for each of the sensors that have been successfully ingested in the particular dataset. Can also be used to retreive Sensor Statistics for a previous ingestion job.

SELECT
next_token,
sensor_statistics_summaries
FROM aws.lookoutequipment.sensor_statistics
WHERE region = '{{ region }}' -- required
;