Flinks: Alarms
Creating your Alarm Flink



Configuring your Alarm Flink




Alarm Source Logs

Modifying and Deleting an Alarm Source



Last updated
//A sample JSON Payload
{
"timestamp": 1708502346278, //Epoch time elapsed since Jan 1, 1970 in milliseconds
"severity": 2, //Integer value in the range 1-3, unknown is 0
"description": "High temperature!", //User-defined string in double-quotes
"latitude": 37.7749, //Source Latitude in decimal format
"longitude": -122.4194, //Source Longitude in decimal format
"altitude_msl": 100, //Altitude at which the drone hovers over the source
//Value should be +ve, and Relative to Take-off (RLT)
"metadata": {
"sensor_id": "TempSensor12A", //User-defined additional data for the alarm
"temperature": 50.2, //Variable names in "", integers without quotes
"battery_level": 80 //Strings in ""
}
}