Initial Release
Instructions for this exercise are available on GettingStartedHealth.InterSystems.com.
In this exercise, you will use the interoperability tools built into InterSystems IRIS for Health™ to construct a basic user portal that monitors live EKG readings from a set of remote patients. See how you can use a minimal amount of code to quickly take real-time data coming from an MQTT broker, then save and display it on a dashboard.
If you would like to skip the exercise and view the completed application on your instance, navigate to Interoperability > List > Productions in the Management Portal, select Solution.MQTT, and click Open.
In the Production Configuration window, click Start.
Step 1: Installation
InterSystems IRIS for Health Sandbox
cd /home/project/shared
git clone https://github.com/intersystems/Samples-MQTT-EKG-Devices
set $Namespace = "INTEROP"
do $system.OBJ.Load("/home/project/shared/Samples-MQTT-EKG-Devices/Installer.cls","ck")
do ##class(App.Installer).InitializeLearningLab()
Docker
git clone https://github.com/intersystems/Samples-MQTT-EKG-Devices
cd Samples-MQTT-EKG-Devices
docker-compose up -d
docker-compose exec iris iris session iris -U %SYS "##class(App.Installer).InitializeDocker()"
Initial Release