🎉 Release of add-on Glances 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-02-05 21:58:08 +00:00
parent 187f80c2d5
commit 47ace69130
6 changed files with 145 additions and 0 deletions

View file

@ -129,6 +129,19 @@ A secure and fast FTP server for Hass.io
[:books: FTP add-on documentation][addon-doc-ftp]
### ✓ [Glances][addon-glances]
![Latest Version][glances-version-shield]
![Supports armhf Architecture][glances-armhf-shield]
![Supports aarch64 Architecture][glances-aarch64-shield]
![Supports amd64 Architecture][glances-amd64-shield]
![Supports i386 Architecture][glances-i386-shield]
![Docker Pulls][glances-pulls-shield]
A cross-platform system monitoring tool
[:books: Glances add-on documentation][addon-doc-glances]
### ✓ [Grafana][addon-grafana]
![Latest Version][grafana-version-shield]
@ -489,6 +502,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: AppDaemon][appdaemon3-issue]
- [Open an issue for the add-on: Example][example-issue]
- [Open an issue for the add-on: FTP][ftp-issue]
- [Open an issue for the add-on: Glances][glances-issue]
- [Open an issue for the add-on: Grafana][grafana-issue]
- [Open an issue for the add-on: Happy Bubbles][happy-bubbles-issue]
- [Open an issue for the add-on: Home Panel][home-panel-issue]
@ -626,6 +640,15 @@ SOFTWARE.
[ftp-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[ftp-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[ftp-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-glances]: https://github.com/hassio-addons/addon-glances/tree/v0.1.0
[addon-doc-glances]: https://github.com/hassio-addons/addon-glances/blob/v0.1.0/README.md
[glances-issue]: https://github.com/hassio-addons/addon-glances/issues
[glances-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[glances-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/glances.svg
[glances-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[glances-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[glances-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[glances-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/v1.2.2
[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/v1.2.2/README.md
[grafana-issue]: https://github.com/hassio-addons/addon-grafana/issues

1
glances/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial add-on release!

54
glances/README.md Normal file
View file

@ -0,0 +1,54 @@
# Community Hass.io Add-ons: Glances
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
[![Support my work on Patreon][patreon-shield]][patreon]
Glances is a cross-platform system monitoring tool written in Python.
## About
Glances is a cross-platform monitoring tool which aims to present a maximum of
information in a minimum of space through a Web-based interface.
Glances can export all system statistics to InfluxDB, allowing you to look
at all your system information and its behavior over time.
[Click here for the full documentation][docs]
![Glances screenshot][screenshot]
## WARNING! THIS IS A BETA VERSION!
This Hass.io Add-ons repository contains beta releases of add-ons.
- They might stop working at any time.
- They could have a negative impact on your system.
This repository was created for:
- Anybody willing to test.
- Anybody interested in trying out upcoming add-ons or add-on features.
If you are more interested in stable releases of our add-ons:
<https://github.com/hassio-addons/repository>
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-glances/blob/v0.1.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-glances/97102?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-glances/tree/v0.1.0
[screenshot]: https://github.com/hassio-addons/addon-glances/raw/master/images/screenshot.png

67
glances/config.json Normal file
View file

@ -0,0 +1,67 @@
{
"name": "Glances",
"version": "0.1.0",
"slug": "glances",
"description": "A cross-platform system monitoring tool",
"url": "https://github.com/hassio-addons/addon-glances",
"webui": "[PROTO:ssl]://[HOST]:[PORT:61208]",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"map": [
"addons",
"backup",
"config:rw",
"share",
"ssl"
],
"boot": "auto",
"hassio_api": true,
"hassio_role": "default",
"auth_api": true,
"docker_api": true,
"host_network": true,
"host_pid": true,
"apparmor": false,
"options": {
"log_level": "info",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"influxdb": {
"enabled": false,
"host": "a0d7b954-influxdb",
"port": 8086,
"username": "glances",
"password": "",
"database": "glances",
"prefix": "localhost",
"interval": 60
}
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"influxdb": {
"enabled": "bool",
"host": "str",
"port": "port",
"username": "str",
"password": "str",
"database": "str",
"prefix": "str",
"interval": "int"
},
"leave_front_door_open": "bool?"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/glances"
}

BIN
glances/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

BIN
glances/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB