The attribute key, by which the measurements are grouped.
In case the measurements are grouped by time, these are the time spans by which the measurements are grouped.
Describes, how the measurements are grouped.
Gets the number of measurements in the collection.
Returns an iter over all measurements.
Generated using TypeDoc
A collection of
measurement groups
. The groups can be defined in PiWeb Monitor. Each group is ameasurement collection
with a specific key:const measurementGroups = piweb.data.getMeasurementGroupCollection(); for (let measurementGroup of measurementGroupCollection) { for (let measurement of measurementGroup) { ... } }