🎉 Release of add-on InfluxDB 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2018-05-27 20:28:47 +00:00
parent da52f4b319
commit ef3954bbdf
6 changed files with 114 additions and 0 deletions

View file

@ -150,6 +150,19 @@ Advanced IDE for Home Assistant, based on Cloud9 IDE
[:books: IDE add-on documentation][addon-doc-ide]
### ✓ [InfluxDB][addon-influxdb]
![Latest Version][influxdb-version-shield]
![Supports armhf Architecture][influxdb-armhf-shield]
![Supports aarch64 Architecture][influxdb-aarch64-shield]
![Supports amd64 Architecture][influxdb-amd64-shield]
![Supports i386 Architecture][influxdb-i386-shield]
![Docker Pulls][influxdb-pulls-shield]
Scalable datastore for metrics, events, and real-time analytics
[:books: InfluxDB add-on documentation][addon-doc-influxdb]
### ✓ [Pi-hole][addon-pi-hole]
![Latest Version][pi-hole-version-shield]
@ -270,6 +283,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: Home Assistant Control Panel][control-panel-issue]
- [Open an issue for the add-on: Homebridge][homebridge-issue]
- [Open an issue for the add-on: IDE][ide-issue]
- [Open an issue for the add-on: InfluxDB][influxdb-issue]
- [Open an issue for the add-on: Pi-hole][pi-hole-issue]
- [Open an issue for the add-on: Plex Media Server][plex-issue]
- [Open an issue for the add-on: SSH - Secure Shell][ssh-issue]
@ -407,6 +421,15 @@ SOFTWARE.
[ide-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[ide-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
[ide-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-influxdb]: https://github.com/hassio-addons/addon-influxdb/tree/v0.1.0
[addon-doc-influxdb]: https://github.com/hassio-addons/addon-influxdb/blob/v0.1.0/README.md
[influxdb-issue]: https://github.com/hassio-addons/addon-influxdb/issues
[influxdb-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[influxdb-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/influxdb-armhf.svg
[influxdb-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[influxdb-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[influxdb-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[influxdb-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/tree/v1.1.1
[addon-doc-pi-hole]: https://github.com/hassio-addons/addon-pi-hole/blob/v1.1.1/README.md
[pi-hole-issue]: https://github.com/hassio-addons/addon-pi-hole/issues

1
influxdb/CHANGELOG.md Normal file
View file

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

38
influxdb/README.md Normal file
View file

@ -0,0 +1,38 @@
# Community Hass.io Add-ons: InfluxDB
[![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]
Scalable datastore for metrics, events, and real-time analytics.
## About
InfluxDB is an open source time series database optimized for high-write-volume.
It's useful for recording metrics, sensor data, events,
and performing analytics. It exposes an HTTP API for client interaction and if
often used in combination with Grafana to visualize the data.
This add-on comes with Chronograf & Kapacitor pre-installed as well. Which
gives you a nice InfluxDB admin interface for managing your users, databases,
data retention settings, and lets you peek inside the database using the
Data Explorer.
[Click here for the full documentation][docs]
![Chronograf in the Home Assistant Frontend][screenshot]
[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/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[docs]: https://github.com/hassio-addons/addon-influxdb/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-influxdb/54491?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[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-influxdb/tree/v0.1.0
[screenshot]: https://github.com/hassio-addons/addon-influxdb/raw/master/images/screenshot.png

52
influxdb/config.json Normal file
View file

@ -0,0 +1,52 @@
{
"name": "InfluxDB",
"version": "0.1.0",
"slug": "influxdb",
"description": "Scalable datastore for metrics, events, and real-time analytics",
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-influxdb/54491?u=frenck",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8888]",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"map": [
"config:rw",
"share:rw",
"ssl"
],
"boot": "auto",
"ports": {
"8086/tcp": 8086,
"8888/tcp": 8888
},
"hassio_api": true,
"homeassistant_api": false,
"host_network": false,
"options": {
"log_level": "info",
"username": "",
"password": "",
"auth": true,
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"ipv6": true
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"username": "str",
"password": "str",
"auth": "bool",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"ipv6": "bool"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/influxdb-{arch}"
}

BIN
influxdb/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
influxdb/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB