updated transport.sessions.inactivity_timeout default value, updated desc for some params
This commit is contained in:
parent
4336c77461
commit
837752a243
@ -777,7 +777,9 @@ audit-log:
|
||||
|
||||
# Device state parameters
|
||||
state:
|
||||
# Should be greater than transport.sessions.report_timeout
|
||||
# Defines when the device state will be marked as "inactive" by server.
|
||||
# We recommend this parameter to be in sync with transport.sessions.inactivity_timeout
|
||||
# (transport timeout should be equal to or greater than current parameter; if not, you can get the situation when the session is closed for the active device).
|
||||
defaultInactivityTimeoutInSec: "${DEFAULT_INACTIVITY_TIMEOUT:600}"
|
||||
defaultStateCheckIntervalInSec: "${DEFAULT_STATE_CHECK_INTERVAL:60}" # Interval for checking the device state after a specified period. Time in seconds
|
||||
# Controls whether we store the device 'active' flag in attributes (default) or telemetry.
|
||||
@ -866,8 +868,12 @@ js:
|
||||
# Transport configuration parameters
|
||||
transport:
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
activity:
|
||||
|
||||
@ -175,8 +175,12 @@ transport:
|
||||
# Interval of periodic eviction of the timed-out DTLS sessions
|
||||
dtls_session_report_timeout: "${TB_COAP_X509_DTLS_SESSION_REPORT_TIMEOUT:1800000}"
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
json:
|
||||
|
||||
@ -160,8 +160,12 @@ transport:
|
||||
# HTTP maximum request processing timeout in milliseconds
|
||||
max_request_timeout: "${HTTP_MAX_REQUEST_TIMEOUT:300000}"
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
json:
|
||||
|
||||
@ -122,8 +122,12 @@ redis:
|
||||
# LWM2M server parameters
|
||||
transport:
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
json:
|
||||
|
||||
@ -181,8 +181,12 @@ transport:
|
||||
# Skip certificate validity check for client certificates.
|
||||
skip_validity_check_for_client_cert: "${MQTT_SSL_SKIP_VALIDITY_CHECK_FOR_CLIENT_CERT:false}"
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
json:
|
||||
|
||||
@ -137,8 +137,12 @@ transport:
|
||||
# To ignore SNMP response values that do not match the data type of the configured OID mapping (by default false - will throw an error if any value of the response not match configured data types)
|
||||
ignore_type_cast_errors: "${SNMP_RESPONSE_IGNORE_TYPE_CAST_ERRORS:false}"
|
||||
sessions:
|
||||
# Inactivity timeout for device session in transport service. The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:300000}"
|
||||
# Parameter defines how long the device transport session will be opened after the last activity time.
|
||||
# The last activity time of the device session is updated if the device sends any message, including keepalive messages
|
||||
# If there is no activity, the session will be closed, and all subscriptions will be deleted.
|
||||
# We recommend this parameter to be in sync with state.defaultInactivityTimeoutInSec
|
||||
# (current parameter should be equal to or greater than defaultInactivityTimeoutInSec; if not, you can get the situation when the session is closed for the active device).
|
||||
inactivity_timeout: "${TB_TRANSPORT_SESSIONS_INACTIVITY_TIMEOUT:600000}"
|
||||
# Interval of periodic check for expired sessions and report of the changes to session last activity time
|
||||
report_timeout: "${TB_TRANSPORT_SESSIONS_REPORT_TIMEOUT:3000}"
|
||||
json:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user