├── Cometd ├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── .gitignore ├── pom.xml └── src │ └── main │ ├── docker │ └── docker-assembly.xml │ ├── java │ └── com │ │ └── hortonworks │ │ └── iot │ │ └── cometd │ │ └── Main.java │ └── resources │ └── docker-config.yml ├── DEVICE_MANAGER_DEMO_CONTROL ├── configuration │ └── control-config.xml ├── metainfo.xml ├── package │ └── scripts │ │ ├── master.py │ │ └── params.py └── quicklinks │ └── quicklinks.json ├── DEVICE_MANAGER_DEMO_CONTROL_SAM ├── configuration │ └── control-config.xml ├── metainfo.xml ├── package │ └── scripts │ │ ├── master.py │ │ └── params.py └── quicklinks │ └── quicklinks.json ├── DeviceMonitor ├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── .gitignore ├── pom.xml └── src │ ├── .DS_Store │ └── main │ ├── .DS_Store │ └── java │ ├── .DS_Store │ └── com │ ├── .DS_Store │ └── hortonworks │ ├── .DS_Store │ ├── bolts │ ├── EnrichDeviceStatus.java │ ├── IncidentDetector.java │ ├── PersistTechnicianLocation.java │ ├── PrintDeviceAlert.java │ ├── PrintDeviceStatus.java │ ├── PublishAlert.java │ ├── PublishDeviceStatus.java │ ├── PublishTechnicianLocation.java │ ├── RecommendTechnician.java │ └── RouteTechnician.java │ ├── events │ ├── DeviceAlert.java │ ├── DeviceStatus.java │ ├── ExternalRequest.java │ ├── STBStatus.java │ ├── TechnicianDestination.java │ ├── TechnicianDetails.java │ └── TechnicianStatus.java │ ├── iot │ └── topology │ │ └── DeviceMonitorTopology.java │ └── util │ ├── Constants.java │ ├── DeviceEventJSONScheme.java │ └── TechnicianEventJSONScheme.java ├── DeviceMonitorNostradamus ├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── .gitignore ├── pom.xml └── src │ ├── .DS_Store │ └── main │ ├── .DS_Store │ └── java │ ├── .DS_Store │ └── com │ └── hortonworks │ └── iot │ ├── events │ ├── DeviceStatus.java │ └── STBStatus.java │ ├── spark │ └── streaming │ │ └── SparkNostradamus.java │ └── util │ └── Constants.java ├── DeviceMonitorNostradamusScala ├── pom.xml └── src │ └── main │ └── scala │ └── com │ └── hortonworks │ └── iot │ └── spark │ └── streaming │ └── SparkNostradamus.scala ├── MapUI ├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── .gitignore ├── pom.xml └── src │ ├── .DS_Store │ └── main │ ├── .DS_Store │ ├── docker │ └── docker-assembly.xml │ ├── java │ └── com │ │ └── hortonworks │ │ └── iot │ │ └── mapui │ │ ├── MapUI.java │ │ └── MapUIMain.java │ ├── resources │ └── docker-config.yml │ └── webapp │ ├── .DS_Store │ ├── WEB-INF │ ├── .gitignore │ └── web.xml │ ├── css │ └── mapStyle.css │ ├── images │ ├── 487632108.png │ ├── car.png │ ├── greenMarker.png │ ├── hortonworks-logo-green.png │ ├── hortonworks-logo-new.png │ ├── hospitalGreen.png │ ├── hospitalRed.png │ ├── redMarker.png │ ├── stb_alert.png │ ├── stb_alert_25.png │ ├── stb_normal.png │ └── stb_normal_25.png │ └── mapui.jsp ├── Model ├── DeviceLogTrainingData.csv ├── device_manager_svm.xml └── nostradamusSVMModel.zip ├── Nifi ├── config │ ├── nifi-ambari-config.json │ ├── nifi-bootstrap-env.json │ ├── nifi-env.json │ ├── nifi-flow-env.json │ ├── nifi-logback-env.json │ └── nifi-properties-env.json └── template │ ├── DeviceManagerDemo.xml │ └── device-manager.xml ├── README.md ├── SAM └── template │ └── device-manager.json ├── SliderConfig ├── appConfig.json ├── metainfo.json └── resources.json ├── Zeppelin └── notebook │ ├── 2B75QB4J1 │ └── note.json │ └── 2B9J2KVQP │ └── note.json ├── configureDataPlaneSync.sh ├── device-manager-sam-install.sh ├── device_manager_demo_install.sh ├── install.sh ├── redeployApplication.sh ├── screenshot └── DeviceManagerScreenShot.png ├── startDemoServices.sh ├── startSimulation.sh └── stopSimulation.sh /Cometd/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/.DS_Store -------------------------------------------------------------------------------- /Cometd/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/.classpath -------------------------------------------------------------------------------- /Cometd/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /classes/ 3 | -------------------------------------------------------------------------------- /Cometd/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/.project -------------------------------------------------------------------------------- /Cometd/.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/.settings/.gitignore -------------------------------------------------------------------------------- /Cometd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/pom.xml -------------------------------------------------------------------------------- /Cometd/src/main/docker/docker-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/src/main/docker/docker-assembly.xml -------------------------------------------------------------------------------- /Cometd/src/main/java/com/hortonworks/iot/cometd/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Cometd/src/main/java/com/hortonworks/iot/cometd/Main.java -------------------------------------------------------------------------------- /Cometd/src/main/resources/docker-config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL/configuration/control-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL/configuration/control-config.xml -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL/metainfo.xml -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL/package/scripts/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL/package/scripts/master.py -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL/package/scripts/params.py -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL/quicklinks/quicklinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL/quicklinks/quicklinks.json -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL_SAM/configuration/control-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL_SAM/configuration/control-config.xml -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL_SAM/metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL_SAM/metainfo.xml -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL_SAM/package/scripts/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL_SAM/package/scripts/master.py -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL_SAM/package/scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL_SAM/package/scripts/params.py -------------------------------------------------------------------------------- /DEVICE_MANAGER_DEMO_CONTROL_SAM/quicklinks/quicklinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DEVICE_MANAGER_DEMO_CONTROL_SAM/quicklinks/quicklinks.json -------------------------------------------------------------------------------- /DeviceMonitor/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/.classpath -------------------------------------------------------------------------------- /DeviceMonitor/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /classes/ 3 | -------------------------------------------------------------------------------- /DeviceMonitor/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/.project -------------------------------------------------------------------------------- /DeviceMonitor/.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/.settings/.gitignore -------------------------------------------------------------------------------- /DeviceMonitor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/pom.xml -------------------------------------------------------------------------------- /DeviceMonitor/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/EnrichDeviceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/EnrichDeviceStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/IncidentDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/IncidentDetector.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PersistTechnicianLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PersistTechnicianLocation.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PrintDeviceAlert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PrintDeviceAlert.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PrintDeviceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PrintDeviceStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishAlert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishAlert.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishDeviceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishDeviceStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishTechnicianLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/PublishTechnicianLocation.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/RecommendTechnician.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/RecommendTechnician.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/bolts/RouteTechnician.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/bolts/RouteTechnician.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/DeviceAlert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/DeviceAlert.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/DeviceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/DeviceStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/ExternalRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/ExternalRequest.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/STBStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/STBStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianDestination.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianDestination.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianDetails.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/events/TechnicianStatus.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/iot/topology/DeviceMonitorTopology.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/iot/topology/DeviceMonitorTopology.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/util/Constants.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/util/DeviceEventJSONScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/util/DeviceEventJSONScheme.java -------------------------------------------------------------------------------- /DeviceMonitor/src/main/java/com/hortonworks/util/TechnicianEventJSONScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitor/src/main/java/com/hortonworks/util/TechnicianEventJSONScheme.java -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/.classpath -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /classes/ 3 | -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/.project -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/.settings/.gitignore -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/pom.xml -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/java/.DS_Store -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/events/DeviceStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/events/DeviceStatus.java -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/events/STBStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/events/STBStatus.java -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/spark/streaming/SparkNostradamus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/spark/streaming/SparkNostradamus.java -------------------------------------------------------------------------------- /DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamus/src/main/java/com/hortonworks/iot/util/Constants.java -------------------------------------------------------------------------------- /DeviceMonitorNostradamusScala/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamusScala/pom.xml -------------------------------------------------------------------------------- /DeviceMonitorNostradamusScala/src/main/scala/com/hortonworks/iot/spark/streaming/SparkNostradamus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/DeviceMonitorNostradamusScala/src/main/scala/com/hortonworks/iot/spark/streaming/SparkNostradamus.scala -------------------------------------------------------------------------------- /MapUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/.DS_Store -------------------------------------------------------------------------------- /MapUI/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/.classpath -------------------------------------------------------------------------------- /MapUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/.gitignore -------------------------------------------------------------------------------- /MapUI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/.project -------------------------------------------------------------------------------- /MapUI/.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/.settings/.gitignore -------------------------------------------------------------------------------- /MapUI/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/pom.xml -------------------------------------------------------------------------------- /MapUI/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/.DS_Store -------------------------------------------------------------------------------- /MapUI/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/.DS_Store -------------------------------------------------------------------------------- /MapUI/src/main/docker/docker-assembly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/docker/docker-assembly.xml -------------------------------------------------------------------------------- /MapUI/src/main/java/com/hortonworks/iot/mapui/MapUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/java/com/hortonworks/iot/mapui/MapUI.java -------------------------------------------------------------------------------- /MapUI/src/main/java/com/hortonworks/iot/mapui/MapUIMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/java/com/hortonworks/iot/mapui/MapUIMain.java -------------------------------------------------------------------------------- /MapUI/src/main/resources/docker-config.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MapUI/src/main/webapp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/.DS_Store -------------------------------------------------------------------------------- /MapUI/src/main/webapp/WEB-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | /classes/ 3 | -------------------------------------------------------------------------------- /MapUI/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /MapUI/src/main/webapp/css/mapStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/css/mapStyle.css -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/487632108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/487632108.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/car.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/greenMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/greenMarker.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/hortonworks-logo-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/hortonworks-logo-green.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/hortonworks-logo-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/hortonworks-logo-new.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/hospitalGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/hospitalGreen.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/hospitalRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/hospitalRed.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/redMarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/redMarker.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/stb_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/stb_alert.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/stb_alert_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/stb_alert_25.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/stb_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/stb_normal.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/images/stb_normal_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/images/stb_normal_25.png -------------------------------------------------------------------------------- /MapUI/src/main/webapp/mapui.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/MapUI/src/main/webapp/mapui.jsp -------------------------------------------------------------------------------- /Model/DeviceLogTrainingData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Model/DeviceLogTrainingData.csv -------------------------------------------------------------------------------- /Model/device_manager_svm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Model/device_manager_svm.xml -------------------------------------------------------------------------------- /Model/nostradamusSVMModel.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Model/nostradamusSVMModel.zip -------------------------------------------------------------------------------- /Nifi/config/nifi-ambari-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-ambari-config.json -------------------------------------------------------------------------------- /Nifi/config/nifi-bootstrap-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-bootstrap-env.json -------------------------------------------------------------------------------- /Nifi/config/nifi-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-env.json -------------------------------------------------------------------------------- /Nifi/config/nifi-flow-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-flow-env.json -------------------------------------------------------------------------------- /Nifi/config/nifi-logback-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-logback-env.json -------------------------------------------------------------------------------- /Nifi/config/nifi-properties-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/config/nifi-properties-env.json -------------------------------------------------------------------------------- /Nifi/template/DeviceManagerDemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/template/DeviceManagerDemo.xml -------------------------------------------------------------------------------- /Nifi/template/device-manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Nifi/template/device-manager.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/README.md -------------------------------------------------------------------------------- /SAM/template/device-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/SAM/template/device-manager.json -------------------------------------------------------------------------------- /SliderConfig/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/SliderConfig/appConfig.json -------------------------------------------------------------------------------- /SliderConfig/metainfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/SliderConfig/metainfo.json -------------------------------------------------------------------------------- /SliderConfig/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/SliderConfig/resources.json -------------------------------------------------------------------------------- /Zeppelin/notebook/2B75QB4J1/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Zeppelin/notebook/2B75QB4J1/note.json -------------------------------------------------------------------------------- /Zeppelin/notebook/2B9J2KVQP/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/Zeppelin/notebook/2B9J2KVQP/note.json -------------------------------------------------------------------------------- /configureDataPlaneSync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/configureDataPlaneSync.sh -------------------------------------------------------------------------------- /device-manager-sam-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/device-manager-sam-install.sh -------------------------------------------------------------------------------- /device_manager_demo_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/device_manager_demo_install.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/install.sh -------------------------------------------------------------------------------- /redeployApplication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/redeployApplication.sh -------------------------------------------------------------------------------- /screenshot/DeviceManagerScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/screenshot/DeviceManagerScreenShot.png -------------------------------------------------------------------------------- /startDemoServices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/startDemoServices.sh -------------------------------------------------------------------------------- /startSimulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/startSimulation.sh -------------------------------------------------------------------------------- /stopSimulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvaks0/DeviceManagerDemo/HEAD/stopSimulation.sh --------------------------------------------------------------------------------