├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── Preview.gif ├── README.md └── root ├── config └── configSample.yaml └── root ├── easy_influx.py ├── esx_snmp.py ├── handlers.py ├── host_classes.py ├── misc_ipmi.py ├── synology_snmp.py └── ups_snmp.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/Preview.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/README.md -------------------------------------------------------------------------------- /root/config/configSample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/config/configSample.yaml -------------------------------------------------------------------------------- /root/root/easy_influx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/easy_influx.py -------------------------------------------------------------------------------- /root/root/esx_snmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/esx_snmp.py -------------------------------------------------------------------------------- /root/root/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/handlers.py -------------------------------------------------------------------------------- /root/root/host_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/host_classes.py -------------------------------------------------------------------------------- /root/root/misc_ipmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/misc_ipmi.py -------------------------------------------------------------------------------- /root/root/synology_snmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/synology_snmp.py -------------------------------------------------------------------------------- /root/root/ups_snmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bendews/EasyInflux-Docker/HEAD/root/root/ups_snmp.py --------------------------------------------------------------------------------