This is an AngularJS SPA (Single Page Application) for retrieving and graphing stored data that is available on Sparkfun Phant server data streams. It also implements a simple (for now) front-end for IoT device provisioning and also a simple MQTT monitor.
PhantGraphs allows to create a simple Dashboard for showing graphs with data stored in Phant server data streams. The data that is shown in the graphs can be configured, namely which fields from a data stream is shown.
PhantGraphs is built on AngularJS for a Single Page Application and Angular-chartJS for generating the graphs.
It can graph data from data.sparkfun.com streams and your also your own data streams hosted on your servers.
The graphs will auto update with the most recent data as it arrives to the streams, allowing for live updating of the graphs.
More info here -> https://primalcortex.wordpress.com/2015/10/15/sparkfun-phant-server-data-stream-graphing/
Please comments and feedback on the above link. Thanks!
Clone this repository and just put the app folder under the docroot of some web-server changing it's name to phantgraphs for example. Access it by http://mywebserver/phantgraphs.
IMPORTANT The application for working needs the PG-RestServer application available here: https://github.com/fcgdam/PG-RestServer.git to be running.
Without this server running the application won't work.
After installing the PG-RestServer and starting it, on this aplication edit the file restapi.js under the folder scripts and change the REST API end point:
Before angular.module('phantGraph') .constant('RESTENDPOINT_URI','http://localhost:3000/api/')
After angular.module('phantGraph') .constant('RESTENDPOINT_URI','http://serveraddress.domain:3000/api/')
The application also allows to monitor MQTT messages for topics that have been subscrided. The MQTT broker must allow WebSockets connections and be reachable.
The application also permits some simple IoT device provisioning, namely registration, status monitoring and allows configuration data to be saved and fed to the IoT devices.