├── .gitignore ├── LICENSE ├── README.md ├── dashboard └── PeaNUT Grafana.json ├── images ├── all_fields_last_value.png ├── miscellaneous.png ├── peanut_grafana_main.png ├── power_consumption_and_cost_style_1.png ├── power_consumption_and_cost_style_2.png ├── power_consumption_only.png ├── power_costs_only.png └── ups_operations.png └── queries ├── Variable-nominal_power_watts.flux ├── all outages.flux ├── last state change to battery.flux ├── load & output watts.flux ├── outage count last 7 days.flux ├── usage & cost - month.flux ├── usage & cost - realtime.flux ├── usage & cost - week.flux └── usage & cost - year.flux /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/PeaNUT Grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/dashboard/PeaNUT Grafana.json -------------------------------------------------------------------------------- /images/all_fields_last_value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/all_fields_last_value.png -------------------------------------------------------------------------------- /images/miscellaneous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/miscellaneous.png -------------------------------------------------------------------------------- /images/peanut_grafana_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/peanut_grafana_main.png -------------------------------------------------------------------------------- /images/power_consumption_and_cost_style_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/power_consumption_and_cost_style_1.png -------------------------------------------------------------------------------- /images/power_consumption_and_cost_style_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/power_consumption_and_cost_style_2.png -------------------------------------------------------------------------------- /images/power_consumption_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/power_consumption_only.png -------------------------------------------------------------------------------- /images/power_costs_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/power_costs_only.png -------------------------------------------------------------------------------- /images/ups_operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/images/ups_operations.png -------------------------------------------------------------------------------- /queries/Variable-nominal_power_watts.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/Variable-nominal_power_watts.flux -------------------------------------------------------------------------------- /queries/all outages.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/all outages.flux -------------------------------------------------------------------------------- /queries/last state change to battery.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/last state change to battery.flux -------------------------------------------------------------------------------- /queries/load & output watts.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/load & output watts.flux -------------------------------------------------------------------------------- /queries/outage count last 7 days.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/outage count last 7 days.flux -------------------------------------------------------------------------------- /queries/usage & cost - month.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/usage & cost - month.flux -------------------------------------------------------------------------------- /queries/usage & cost - realtime.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/usage & cost - realtime.flux -------------------------------------------------------------------------------- /queries/usage & cost - week.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/usage & cost - week.flux -------------------------------------------------------------------------------- /queries/usage & cost - year.flux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyr325/Grafana-for-PeaNUT/HEAD/queries/usage & cost - year.flux --------------------------------------------------------------------------------