Skip to content

Latest commit

 

History

History

gateway_watchdog

Monitoring and notifications for LoRaWAN gateway connection status

This sample contains an example solution for monitoring connectivity status, i.e. connections and disconnections for LoRaWAN gateways using AWS IoT Core for LoRaWAN. Disconnection detection will consider a configurable grace period (default is 5 minutes). After deploying this solution in your AWS account, you will receive an e-mail notificiation each time your LoRaWAN gateway connects or disconnects. Additionaly, a message will be published to AWS IoT Core message broker MQTT topic (e.g. awsiotcorelorawan/events/presence/disconnect/<WirelessGatewayId>) each time the gateway connects and disconnects.

Please consider the following definition of "connect" and "disconnect" as used in this sample:

  • A "connect" refers to a LoRaWAN gateway which successfully reestablishes a new connection, or a gateway successfully connected first time to AWS IoT Core for LoRaWAN.
  • A "disconnect" refers to a LoRaWAN gateway which is disconnected from AWS IoT Core for LoRaWAN for longer then a grace period (configurable, default is 1 minute). The grace periods is intended to filter out short (e.g. < 1 min) disconnections not impacting the IoT application.

Solution architecture

Architecture overview

Costs

Please note that starting this solution will result in continious additional charges to your AWS account for usage of services such as AWS Step Functions, AWS Lambda , AWS IoT Events and Amazon CloudWatch. For example, the AWS Step Functions state machine will invoke the AWS Lambda every 4 minutes (configurable). Please ensure to follow these guidelines stop the execution of the AWS Step Functions state machine and remove the stack to stop incurring costs for this solution.

Quick deployment

Please run the following commands in your local shell or in AWS CloudShell.

1. Deploy the CDK stack

# Clone the repository 
git clone https://github.com/aws-samples/aws-iot-core-lorawan
cd aws-iot-core-lorawan/gateway_watchdog
# Set up and activate virtual environment
python3 -m venv .env
source .env/bin/activate 
# Install AWS CDK and neccessary CDK libraries
npm install -g aws-cdk
pip3 install -r requirements.txt   
# If first time running CDK deployment in this account / region, run CDK bootstap
# This is a one-time activity per account/region, e.g. 
# cdk bootstrap aws://123456789/us-east-1
cdk bootstrap aws://<Account Id>/<Region name>
# Deploy the stack. Ensure to replace <E-Mail> with the E-Mail adresss to send notifications to
cdk deploy --parameters emailforalarms=<E-Mail>

2. Confirm the SNS e-mail subscription

Please check your mailbox for an e-mail message with subject "AWS Notification - Subscription Confirmation" and confirm the subscription.

3. Enable the Amazon EventBridge Rule

As an output of the stack, you will receive a command to enable the Amazon EventBridge rule, e.g.

...
Outputs:
LorawanConnectivityWatchdogStack.WatchdogStartCommand = aws events enable-rule --name LorawanConnectivityWatchd-LoRaWANGatewayWatchdogSc-17GJ9GEWHDDE0

The EventBridge rule will periodically trigger the state machine that invoke the AWS Lambda function to read the gateway connectivity status and ingest it to AWS IoT events input.

4. View notifications and MQTT presence events

For a test purpose, disconnect your LoRaWAN gatway from AWS IoT Core for LoRaWAN. Watch out for mails with notification about connects and disconnects. You can also open the MQTT Test client and subscribe to the topic pattern awsiotcorelorawan/events/presence/+/+ to see the published presence events, e.g.: LoRaWAN gateway presence events

5. Stop the execution of the solution

As an output of the stack, you have receiveed a command to disable the Amazon EventBridge rule, e.g.

...
Outputs:
LorawanConnectivityWatchdogStack.WatchdogStopommand = aws events disable-rule --name LorawanConnectivityWatchd-LoRaWANGatewayWatchdogSc-17GJ9GEWHDDE0

Please run this command to stop the periodic execution of the watchdog.

6.Remove the stack

cd cd aws-iot-core-lorawan/lorawan_connectivity_watchdog
cdk destroy

Troubleshooting

View AWS Step Functions execution trace

  1. Open state machine LoRaWANGatewayWatchdogStatemachine... here
  2. Click on a recent exeuction
  3. View the execution trace and potential errors

View AWS IoT Events logs

  1. Open AWS IoT Events settings here
  2. Configure Logging on "DEBUG" level with a debug target as detector model LoRaWANGatewayConnectivityModel
  3. View the CloudWatch logs for potentially helpful error messages from AWS IoT Events

Implementation setails

AWS IoT Events

AWS IoT Events Detector model: IoT Events Detector model

AWS Step functions state machine

AWS Step functions state machine

Local testing

Install SAM CDK (beta)

brew install aws-sam-cli-beta-cdk.

Locally invoke AWS Lambda

sam-beta-cdk local invoke LorawanConnectivityWatchdogStack/GetWirelessGatewayStatisticsLambda -e tests/input_connected.json
sam-beta-cdk local invoke LorawanConnectivityWatchdogStack/GetWirelessGatewayStatisticsLambda -e tests/input_disconnected.json

Note This architecture makes an opinionated use of AWS StepFunctions. An alternative approach is to invoke the Lambda function directly with the EventBridge periodic rule. However, using StepFunctions allows to easily add states in our state machine to combine several watchdogs for example.