Orange Pi Zero - IOT MQTT monitor - with onboard influxdb, chronograf and kapacitor

just a minor update to the above IOT monitor…for those few who use it… to bad more do not use it a very easy IOT monitor. install able on 1000’s of devices . routers ( asus, belkin linksy Dlink ), PIs ( all variants) and even client radios such as Ubiquity and engenius … all you need is USB to overlay the file system so you do not run out of space… if using those Boards you just need Collectd to send data to Influxdb as it not arm base so my custom influx software will not work …
but for those Who use and want to use EasyESp firmware for your devices.
here how to do it:
use the newer version esp Easy mega. ( but you can use the older version as well)
under controllers add Domoticz MQTT set it to your MQTT setting.
under device set up your device – ( not necessary to set up send to controller)
then go to tools > advance and enable rules
Check out under Tools> logs and see what are your event listing are:
Screenshot_20190129_193934

then under rules create an action for each event;

on dht#Humidity do
 Publish incoming/House/mqtt-Humidity/humidity-Househumidity,N:[dht#Humidity] 
endon

on dht#Temperature do
 Publish incoming/House/mqtt-Temp/temperature-HouseInside ,N:[dht#Temperature] 
 endon

save and apply
then afterward your log will display these outputs

Screenshot_20190129_194602

and on your router or pi device it will automatically produce a RRD graph that will store one year of data in a small 64byte file. per graph

based on the example above --under the Host name of House it will automatically create graphs for you as such:

and if you have collectd ( and influxdb) configured correctly it will automatically create a database under the host name House in infludb to which you can then build all your custom graphs in chonograf or other…

now you can either check your router for very basic info. or login to chronograf(grafana) and see your data that way…

okay good luck have fun ( i also add Tail Csv to openWrt Collectd check openwrt website for more info ) now it can tail any csv and add data from that to collectd and influxdb automatically