Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion glances/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ LABEL \
io.hass.name="${BUILD_NAME}" \
io.hass.description="${BUILD_DESCRIPTION}" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="addon" \
io.hass.type="app" \
io.hass.version=${BUILD_VERSION} \
maintainer="Franck Nijhof <opensource@frenck.dev>" \
org.opencontainers.image.title="${BUILD_NAME}" \
Expand Down
4 changes: 0 additions & 4 deletions glances/build.yaml

This file was deleted.

6 changes: 4 additions & 2 deletions glances/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version: dev
slug: glances
description: A cross-platform system monitoring tool
url: https://github.com/hassio-addons/app-glances
watchdog: http://[HOST]:61209
init: false
ingress: true
ingress_port: 0
ingress_stream: true
Expand All @@ -23,7 +25,7 @@ map:
- share
- ssl
- media
- homeassistant_config:rw
- homeassistant_config
hassio_api: true
auth_api: true
docker_api: true
Expand Down Expand Up @@ -68,7 +70,7 @@ schema:
prefix: str?
interval: int
ssl: bool?
token: str?
token: password?
version: int
leave_front_door_open: bool?
environment:
Expand Down
Empty file modified glances/rootfs/etc/services.d/glances/run
100755 → 100644
Empty file.
65 changes: 65 additions & 0 deletions glances/translations/en.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
configuration:
log_level:
name: Log level
description: The log level for the app.
process_info:
name: Process info
description: Enable or disable process information.
refresh_time:
name: Refresh time
description: Time in seconds between each refresh of the system data.
ssl:
name: SSL
description: Enable SSL for direct access (not needed for Ingress).
certfile:
name: Certificate file
description: The certificate file to use for SSL.
keyfile:
name: Key file
description: The private key file to use for SSL.
influxdb:
name: InfluxDB
description: InfluxDB export configuration.
bucket:
name: Bucket
description: InfluxDB v2 bucket name.
enabled:
name: Enabled
description: Enable or disable InfluxDB export.
host:
name: Host
description: The hostname of the InfluxDB server.
port:
name: Port
description: The port of the InfluxDB server.
username:
name: Username
description: InfluxDB v1 username.
password:
name: Password
description: InfluxDB v1 password.
database:
name: Database
description: InfluxDB v1 database name.
org:
name: Organization
description: InfluxDB v2 organization.
prefix:
name: Prefix
description: Prefix for measurements in InfluxDB.
interval:
name: Interval
description: Time in seconds between each export to InfluxDB.
ssl:
name: SSL
description: Use SSL to connect to InfluxDB.
token:
name: Token
description: InfluxDB v2 authentication token.
version:
name: Version
description: "InfluxDB version (1 or 2)."
leave_front_door_open:
name: Leave front door open
description: Disable authentication (not recommended).