16 lines
544 B
Plaintext
16 lines
544 B
Plaintext
##--------------------------------------------------------------------
|
|
## Connection Congestion
|
|
##
|
|
## Generating alarm when MQTT connection congested
|
|
##--------------------------------------------------------------------
|
|
## Note: This is an example of how to configure this feature
|
|
## you should copy and paste the below data into the emqx.conf for working
|
|
|
|
conn_congestion {
|
|
## Enable or disable connection congestion alarm
|
|
enable_alarm = true
|
|
|
|
## Minimal time before clearing the alarm
|
|
min_alarm_sustain_duration = 1m
|
|
}
|