@stelladoradus/device-transmission-monitor v1.0.51
Job Monitor
Daemon watching for new upload jobs and submitting them to the MQTT queue. It also watches the MQTT queue for upload results and updates job states accordingly.
Development
Use the following npm tasks while working on the application:
npm buildto build the application and output the redistributables into/distfoldernpm watchto continuously build the application as you edit itnpm startto launch the built applicationnpm devto combine the above - the sources will be rebuilt as you edit them and the server will be restarted automatically
Running the API on EC2 instance
The application is deployed to on EC2 to /home/ubuntu/stella-doradus folder.
Create folder /home/ubuntu/stella-doradus and initialize as NodeJS project:
cd ~
mkdir stella-doradus
cd stella-doradus
npm initInstall the API as NodeJS dependency by running
npm install @stelladoradus/device-transmission-monitorCreate shared application cofiguration in ./configuration subfolder. Configuration can be found in ./node_modules/@stelladoradus/device-transmission-monitor/dist/configuration but it's better to have it outside. It's easier to find this way, and it will be shared by other applications such as API.
Run the application under NodeJS process manager pm2 by running
pm2 start ./node_modules/@stelladoradus/device-transmission-monitor --name monitor -- -e staging -c ../../../../configuration -The above example will register it as PM2 process named monitor and will execute it using configuration from ./configuration folder under staging environment. This means that settings from configuration.staging.js file will be used.
Management of the Monitor on EC2 instance
All operations on the running API should be performed with pm2 interface.
To see the currently running NodeJS processes controlled by pm, run
pm2 lsIf Monitor hasn't been started yet, it will not be listed. You need to start it first with the above command. For convenience, there's an alias defined in .bashrc, so you can start the Monitor by running:
monitor-startOnce the Monitor process is running and controlled by PM2, to stop, start again and restart it use the following commands:
pm2 stop monitor
pm2 start monitor
pm2 restart monitorTo watch application log live and to flush the logs, run
pm2 logs monitor
pm2 logs monitor --lines 100
pm2 flush monitorAutomatic startup on EC2 instance reboot
The application has been configured to automatically start on reboot using pm2 as described at https://medium.com/@nishankjaintdk/setting-up-a-node-js-app-on-a-linux-ami-on-an-aws-ec2-instance-with-nginx-59cbc1bcc68c. We've executed the following commands:
pm2 startup
pm2 saveThe first command instructs how to create a systemd service wrapper which will take care of starting pm2 automatically on instance reboot. The details of the service can be found in a systemd service file at /etc/systemd/system/pm2-ubuntu.service.
The second command stored the currently running pm2 processes in /home/ubuntu/.pm2/dump.pm2, so that pm2 knows what to start automatically when it's run on instance reboot.
Job Monitor Configuration
When running locally during development, configuration is found by default in ./configuration folder relative to the executable of the application.
It is possible to point the application to use a different configuration folder, by passing it as -c runtime parameter. The folder has to be a path relative to the application executable. For example, when running on EC2, we force the applications (API and Monitor) to use a shared configuration folder in /home/ubuntu/stella-doradus/configuration by passing -c ../../../../configuration to the API process.
Configuration used by the application is resolved by merging default settings from configuration.default.js with environment-specific settings. On development machines this will be configuration.development.js, on AWS staging environment this will be configuration.staging.js and on AWS production environment this will be configuration.production.js file. One can specify the environment used by the application by setting NODE_ENV variable or by passing it as -e parameter when running the application.
The following settings are applicable for Monitor application:
logging- allows changing default log level across the applicationmonitor- controls the working of the Job Monitor module: frequency of polling, AWS IoT platform parameters etc.
Refer to configuration.default.js for detailed description of all configuration parameters.