🎉 Release of add-on Tautulli 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2018-09-15 18:51:31 +00:00
parent aafa1a3709
commit c063ec5e84
6 changed files with 107 additions and 0 deletions

View file

@ -306,6 +306,19 @@ Centrally manage all your Sonoff-Tasmota devices
[:books: TasmoAdmin add-on documentation][addon-doc-tasmoadmin]
### ✓ [Tautulli][addon-tautulli]
![Latest Version][tautulli-version-shield]
![Supports armhf Architecture][tautulli-armhf-shield]
![Supports aarch64 Architecture][tautulli-aarch64-shield]
![Supports amd64 Architecture][tautulli-amd64-shield]
![Supports i386 Architecture][tautulli-i386-shield]
![Docker Pulls][tautulli-pulls-shield]
Monitoring and tracking tool for Plex Media Server
[:books: Tautulli add-on documentation][addon-doc-tautulli]
### ✓ [Tor][addon-tor]
![Latest Version][tor-version-shield]
@ -374,6 +387,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: Shinobi Pro][shinobi-issue]
- [Open an issue for the add-on: Spotify Connect][spotify-issue]
- [Open an issue for the add-on: TasmoAdmin][tasmoadmin-issue]
- [Open an issue for the add-on: Tautulli][tautulli-issue]
- [Open an issue for the add-on: Tor][tor-issue]
- [Open an issue for the add-on: UniFi Controller][unifi-issue]
@ -614,6 +628,15 @@ SOFTWARE.
[tasmoadmin-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[tasmoadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[tasmoadmin-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-tautulli]: https://github.com/hassio-addons/addon-tautulli/tree/v0.1.0
[addon-doc-tautulli]: https://github.com/hassio-addons/addon-tautulli/blob/v0.1.0/README.md
[tautulli-issue]: https://github.com/hassio-addons/addon-tautulli/issues
[tautulli-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[tautulli-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/tautulli.svg
[tautulli-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[tautulli-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[tautulli-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[tautulli-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-tor]: https://github.com/hassio-addons/addon-tor/tree/v1.5.1
[addon-doc-tor]: https://github.com/hassio-addons/addon-tor/blob/v1.5.1/README.md
[tor-issue]: https://github.com/hassio-addons/addon-tor/issues

1
tautulli/CHANGELOG.md Normal file
View file

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

35
tautulli/README.md Normal file
View file

@ -0,0 +1,35 @@
# Community Hass.io Add-ons: Tautulli
[![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]
Monitoring and tracking tool for Plex Media Server.
## About
Tautulli is an application that you can run alongside your Plex Media Server
to monitor activity, and track various statistics.
Most importantly, these statistics include what has been watched,
who watched it, when and where they watched it, and how it was watched.
All statistics are presented in a nice and clean interface with many tables and
graphs, which makes it easy to brag about your server to everyone else.
[Click here for the full documentation][docs]
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/ludeeus
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[docs]: https://github.com/hassio-addons/addon-tautulli/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-tautulli/68745?u=ludeeus
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-tautulli/tree/v0.1.0
[screenshot]: https://github.com/hassio-addons/addon-tautulli/raw/master/images/screenshot.png

48
tautulli/config.json Normal file
View file

@ -0,0 +1,48 @@
{
"name": "Tautulli",
"version": "0.1.0",
"slug": "tautulli",
"description": "Monitoring and tracking tool for Plex Media Server",
"url": "https://github.com/hassio-addons/addon-tautulli/tree/master/README.md",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8181]",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"hassio_api": true,
"homeassistant_api": false,
"host_network": false,
"ports": {
"8181/tcp": 8181
},
"map": [
"config",
"ssl"
],
"options": {
"log_level": "info",
"username": "",
"password": "",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"username": "str",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"i_like_to_be_pwned": "bool?",
"leave_front_door_open": "bool?"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/tautulli"
}

BIN
tautulli/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
tautulli/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB