set default discovery_messages = true and group_messages = False
This commit is contained in:
@@ -51,8 +51,8 @@ This is the default configuration:
|
|||||||
|
|
||||||
```
|
```
|
||||||
random_delay = randrange(30)
|
random_delay = randrange(30)
|
||||||
discovery_messages = False
|
discovery_messages = True
|
||||||
group_messages = True
|
group_messages = False
|
||||||
sleep_time = 0.5
|
sleep_time = 0.5
|
||||||
cpu_load = True
|
cpu_load = True
|
||||||
cpu_temp = True
|
cpu_temp = True
|
||||||
@@ -223,3 +223,4 @@ entities:
|
|||||||
```
|
```
|
||||||
# To Do
|
# To Do
|
||||||
- maybe add network traffic monitoring via some third party software (for now I can't find a way to do it without additional software)
|
- maybe add network traffic monitoring via some third party software (for now I can't find a way to do it without additional software)
|
||||||
|
- make it work for Ubuntu
|
||||||
|
|||||||
@@ -10,10 +10,10 @@ mqtt_topic_prefix = "rpi-MQTT-monitor"
|
|||||||
# Messages configuration
|
# Messages configuration
|
||||||
|
|
||||||
# If this is set to True the script will send just one message containing all values
|
# If this is set to True the script will send just one message containing all values
|
||||||
group_messages = True
|
group_messages = False
|
||||||
|
|
||||||
# If this is set, then the script will send MQTT discovery messages meaning a config less setup in HA. Only works for group_messages being False
|
# If this is set, then the script will send MQTT discovery messages meaning a config less setup in HA. Only works for group_messages being False
|
||||||
discovery_messages = False
|
discovery_messages = True
|
||||||
|
|
||||||
# Random delay in seconds before measuring the values
|
# Random delay in seconds before measuring the values
|
||||||
# - this is used for de-synchronizing message if you run this script on many hosts, set this to 0 for no delay.
|
# - this is used for de-synchronizing message if you run this script on many hosts, set this to 0 for no delay.
|
||||||
|
|||||||
Reference in New Issue
Block a user