less than a minute
This is part of our recommended workflow to create machine states. The data sent here will not be stored in the database automatically, as it will be required to be converted into a state. In the future, there will be a microservice, which converts these automatically.
MQTT: ia/<customerID>/<location>/<AssetID>/detectAnomaly
For Kafka just switch the /
character with a .
A message is sent here each time a stop reason has been identified automatically or by input from the machine operator.
key | data type | description |
---|---|---|
timestamp_ms | int | Unix timestamp of message creation |
detectedAnomaly | string | reason for the production stop of the asset |
The anomaly of the asset has been identified as maintenance:
{
"timestamp_ms":1588879689394,
"detectedAnomaly":"maintenance",
}