forked from roger-/hass-sysmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sysmon.config
37 lines (29 loc) · 979 Bytes
/
sysmon.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Home Assistant configuration
HASS_TOKEN=""
HASS_SERVER="homeassistant.local"
HASS_PORT="8123"
HASS_MQTT_PREFIX="homeassistant"
# MQTT path to publish states nad publish period (in seconds)
MQTT_PUB_PATH="/home/servers"
MQTT_PUBLISH_PERIOD=15
# Define sensor prefix. Options: 0 = none (default and if not 1 or string), 1 = hostname, custom if string
SENSOR_PREFIX_OPTION=1
# Choos wether the unique machine ID should be at the end or beginning of the device name. Options: 0 = beginning (default), 1 = end.
POSITION_UNIQUE_ID=1
# name of network interface (e.g. eth0) otherwise first active one will be used
NETWORK_IFACE=""
# debug levels: 0 = DEBUG, 1 = INFO, 2 = WARN, 3 = ERROR
DEBUG_LEVEL=1
# how long to wait for the server to respond (or sleep if not supported)
TIMEOUT_SERVER=1
# sensor config
ENABLE_DISK=1
ENABLE_LOAD=1
ENABLE_MEMORY=1
ENABLE_SWAP=1
ENABLE_DISK=1
ENABLE_WIFI=1
ENABLE_UPTIME=1
ENABLE_TEMPERATURE=1
ENABLE_PING=1
CONFIG_PING_HOST="192.168.0.1"