Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SensorStatisticsSummary

import type { SensorStatisticsSummary } from "https://aws-api.deno.dev/v0.4/services/lookoutequipment.ts?docs=full";

Summary of ingestion statistics like whether data exists, number of missing values, number of invalid values and so on related to the particular sensor.

interface SensorStatisticsSummary {
CategoricalValues?: CategoricalValues | null;
ComponentName?: string | null;
DataEndTime?: Date | number | null;
DataExists?: boolean | null;
DataStartTime?: Date | number | null;
DuplicateTimestamps?: CountPercent | null;
InvalidDateEntries?: CountPercent | null;
InvalidValues?: CountPercent | null;
LargeTimestampGaps?: LargeTimestampGaps | null;
MissingValues?: CountPercent | null;
MonotonicValues?: MonotonicValues | null;
MultipleOperatingModes?: MultipleOperatingModes | null;
SensorName?: string | null;
}

§Properties

§
CategoricalValues?: CategoricalValues | null
[src]

Parameter that describes potential risk about whether data associated with the sensor is categorical.

§
ComponentName?: string | null
[src]

Name of the component to which the particular sensor belongs for which the statistics belong to.

§
DataEndTime?: Date | number | null
[src]

Indicates the time reference to indicate the end of valid data associated with the sensor that the statistics belong to.

§
DataExists?: boolean | null
[src]

Parameter that indicates whether data exists for the sensor that the statistics belong to.

§
DataStartTime?: Date | number | null
[src]

Indicates the time reference to indicate the beginning of valid data associated with the sensor that the statistics belong to.

§
DuplicateTimestamps?: CountPercent | null
[src]

Parameter that describes the total number of duplicate timestamp records associated with the sensor that the statistics belong to.

§
InvalidDateEntries?: CountPercent | null
[src]

Parameter that describes the total number of invalid date entries associated with the sensor that the statistics belong to.

§
InvalidValues?: CountPercent | null
[src]

Parameter that describes the total number of, and percentage of, values that are invalid for the sensor that the statistics belong to.

§
LargeTimestampGaps?: LargeTimestampGaps | null
[src]

Parameter that describes potential risk about whether data associated with the sensor contains one or more large gaps between consecutive timestamps.

§
MissingValues?: CountPercent | null
[src]

Parameter that describes the total number of, and percentage of, values that are missing for the sensor that the statistics belong to.

§
MonotonicValues?: MonotonicValues | null
[src]

Parameter that describes potential risk about whether data associated with the sensor is mostly monotonic.

§
MultipleOperatingModes?: MultipleOperatingModes | null
[src]

Parameter that describes potential risk about whether data associated with the sensor has more than one operating mode.

§
SensorName?: string | null
[src]

Name of the sensor that the statistics belong to.