⬆️ Updating add-on Log Viewer to 0727897

This commit is contained in:
Community Hass.io Add-ons Bot 2018-06-13 22:25:15 +00:00
parent 882414679b
commit 1ee171ea84
4 changed files with 141 additions and 0 deletions

3
log-viewer/CHANGELOG.md Normal file
View file

@ -0,0 +1,3 @@
2018/06/13 22:11 UTC - [0727897](https://github.com/hassio-addons/addon-log-viewer/commit/0727897e64539ad85d83e8ead9e112f1659e1198) by [@frenck](https://github.com/frenck)
> :shirt: Working around hadolint warning

46
log-viewer/README.md Normal file
View file

@ -0,0 +1,46 @@
# Community Hass.io Add-ons: Log Viewer
[![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]
Browser-based log utility for Hass.io (Home Assistant)
## About
Lorem ipsum
[Click here for the full documentation][docs]
## WARNING! THIS IS AN EDGE VERSION!
This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds
add-ons are based upon the latest development version.
- They may not work at all.
- 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.
- Developers.
If you are more interested in stable releases of our add-ons:
<https://github.com/hassio-addons/repository>
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[release-shield]: https://img.shields.io/badge/version-0727897-blue.svg
[release]: https://github.com/hassio-addons/addon-log-viewer/tree/0727897
[docs]: https://github.com/hassio-addons/addon-log-viewer/blob/0727897/README.md
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/dale3h

69
log-viewer/config.json Normal file
View file

@ -0,0 +1,69 @@
{
"name": "Log Viewer",
"version": "0727897",
"slug": "logviewer",
"description": "Browser-based log utility for Hass.io (Home Assistant)",
"url": "https://github.com/hassio-addons/addon-log-viewer",
"startup": "application",
"webui": "[PROTO:ssl]://[HOST]:[PORT:4277]",
"homeassistant_api": true,
"hassio_api": true,
"boot": "auto",
"host_network": false,
"ports": {
"4277/tcp": 4277
},
"map": [
"config",
"share",
"ssl"
],
"options": {
"log_level": "info",
"username": "admin",
"password": "",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"filters": [
{
"keyword": "ERROR",
"style": "color: red; font-weight: bold;"
},
{
"keyword": "WARN",
"style": "color: yellow;"
},
{
"keyword": "INFO",
"style": "color: limegreen;"
},
{
"keyword": "DEBUG",
"style": "color: cyan;"
},
{
"keyword": "TRACE",
"style": "color: blue;"
}
]
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"username": "str",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"filters": [
{
"keyword": "str",
"style": "str"
}
]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/log-viewer"
}