Asset Validation Filter¶
The foglamp-filter-asset-validation filter allows simple validation of readings within a pipeline such that readings that are invalidated can be identified and dealt with appropriately, or discarded early in the processing of the readings.
The filter works by executing a number of expressions, defined in the configuration of the plugin, against a single reading. If any of those expressions evaluates to false then the asset is considered to have failed validation and a user defined action will be instigated. Supported actions are
Label all readings
Label failed readings
Change asset name
Remove reading
Filter Configuration¶
The configuration options supported by the asset-validation filter are
Asset: The name of the asset to validate. If left blank then the validation is to be used for all assets in the pipeline.
Action: The actions that can be taken for failed validation
Label all readings: Label all readings with a pass/fail status by adding a datapoint to the asset in the reading.
Label failed readings: Label readings that have failed validation by adding a datapoint to the asset in the reading.
Change asset name: Change the asset name of readings that have failed validation.
Remove reading: Remove readings that have failed validation from the pipeline.
Status Datapoint: The name of the datapoint to label pass/fail conditions on a reading. This is applicable only for the action “Label all readings” and “Label failed readings”.
Failed Asset: The name to be used for asset if validation failed.
Validations: A list of validation expressions. These expressions should evaluate to true or false. A value of false represents a failed validation.
Examples
If a reading has two data points voltage and current and condition is that power used must not exceed 10kW. The following expression can be added as a validation expression
voltage * current <= 10000
If condition is that voltage should be between 110 and 240 volts and the maximum current that can be supplied is 50 Ampere. The following expressions can be added as a validation expression
voltage >= 0
voltage == 0 or (voltage >= 110 and voltage <= 240)
current >= 0 and current <= 50
See Also¶
foglamp-filter-ADM_LD_prediction - Filter to detect whether a large discharge is required for a centrifuge
foglamp-filter-amber - A FogLAMP filter to pass data to the Boon Logic Nano clustering engine
foglamp-filter-asset - A FogLAMP processing filter that is used to block or allow certain assets to pass onwards in the data stream
foglamp-filter-batch-label - A filter to attach batch labels to the data. Batch numbers are updated based on conditions seen in the data stream.
foglamp-filter-breakover - Filter to forecast the a pending breakover event in a centrifuge.
foglamp-filter-change - A FogLAMP processing filter plugin that only forwards data that changes by more than a configurable amount
foglamp-filter-conditional-labeling - Attach labels to the reading data based on a set of expressions matched against the data stream.
foglamp-filter-delta - A FogLAMP processing filter plugin that removes duplicates from the stream of data and only forwards new values that differ from previous values by more than a given tolerance
foglamp-filter-ednahint - A hint filter for controlling how data is written using the eDNA north plugin to AVEVA’s eDNA historian
foglamp-filter-enumeration - A filter to map between symbolic names and numeric values in a datapoint.
foglamp-filter-expression - A FogLAMP processing filter plugin that applies a user define formula to the data as it passes through the filter
foglamp-filter-fft - A FogLAMP processing filter plugin that calculates a Fast Fourier Transform across sensor data
foglamp-filter-inventory - A plugin that can inventory the data that flows through a FogLAMP pipeline.
foglamp-filter-log - A FogLAMP filter that converts the readings data to a logarithmic scale. This is the example filter used in the plugin developers guide.
foglamp-filter-metadata - A FogLAMP processing filter plugin that adds metadata to the readings in the data stream
foglamp-filter-normalise - Normalise the timestamps of all readings that pass through the filter. This allows data collected at different rate or with skewed timestamps to be directly compared.
foglamp-filter-omfhint - A filter plugin that allows data to be added to assets that will provide extra information to the OMF north plugin.
foglamp-filter-python35 - A FogLAMP processing filter that allows Python 3 code to be run on each sensor value.
foglamp-filter-rate - A FogLAMP processing filter plugin that sends reduced rate data until an expression triggers sending full rate data
foglamp-filter-rms - A FogLAMP processing filter plugin that calculates RMS value for sensor data
foglamp-filter-scale-set - A FogLAMP processing filter plugin that applies a set of sale factors to the data
foglamp-filter-sigmacleanse - A data cleansing plugin that removes data that differs from the mean value by more than x sigma
foglamp-filter-specgram - FogLAMP filter to generate spectrogram images for vibration data
foglamp-filter-statistics - Generic statistics filter for FogLAMP data that supports the generation of mean, mode, median, minimum, maximum, standard deviation and variance.
foglamp-filter-vibration_features - A filter plugin that takes a stream of vibration data and generates a set of features that characterise that data
foglamp-south-Expression - A FogLAMP south plugin that uses a user define expression to generate data