├── .gitignore ├── AUTHORS.md ├── DEVELOPMENT.md ├── LICENSE ├── Makefile ├── README.md ├── dist ├── history_influxdb.conf └── history_influxdb.so ├── img ├── grafana_example01.png ├── grafana_example02.png ├── grafana_query.png └── module_concept.png └── src ├── history_influxdb.c ├── load_config.c └── load_config.h /.gitignore: -------------------------------------------------------------------------------- 1 | dist/history_influxdb_local.conf 2 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | This module has been developed by: 2 | 3 | - Lucy MacPhail 4 | - Vasek Chalupnicek 5 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/README.md -------------------------------------------------------------------------------- /dist/history_influxdb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/dist/history_influxdb.conf -------------------------------------------------------------------------------- /dist/history_influxdb.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/dist/history_influxdb.so -------------------------------------------------------------------------------- /img/grafana_example01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/img/grafana_example01.png -------------------------------------------------------------------------------- /img/grafana_example02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/img/grafana_example02.png -------------------------------------------------------------------------------- /img/grafana_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/img/grafana_query.png -------------------------------------------------------------------------------- /img/module_concept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/img/module_concept.png -------------------------------------------------------------------------------- /src/history_influxdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/src/history_influxdb.c -------------------------------------------------------------------------------- /src/load_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/src/load_config.c -------------------------------------------------------------------------------- /src/load_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LMacPhail/zabbix-history-influxdb/HEAD/src/load_config.h --------------------------------------------------------------------------------