You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Set the internal log rate limit. This limits Vector from emitting identical logs more than once over the given number of seconds."
686
+
description: """
687
+
Set the internal log rate limit in seconds. Within each time window, the first occurrence of a
688
+
log is emitted, the second shows a suppression warning, and subsequent occurrences are silent
689
+
until the window expires. When the window expires and the log fires again, a summary of the
690
+
suppressed count is emitted followed by the log itself.
691
+
"""
682
692
type: uint: {
683
693
default: 10
684
694
unit: null
685
695
}
686
696
}
697
+
VECTOR_INTERNAL_LOGS_SOURCE_RATE_LIMIT: {
698
+
description: """
699
+
Apply a rate limit (in seconds) to the broadcast channel that feeds all `internal_logs` sources.
700
+
When set, the first occurrence of a repeated log is emitted, the second shows a suppression
701
+
warning, and subsequent occurrences are silent until the window expires. When the window expires
702
+
and the log fires again, a summary of the suppressed count is emitted followed by the log itself.
703
+
Unset by default so that `internal_logs` consumers receive every log event. This limit is
704
+
independent of `VECTOR_INTERNAL_LOG_RATE_LIMIT`, which only applies to stdout/stderr output.
705
+
"""
706
+
type: uint: {
707
+
default: null
708
+
unit: "seconds"
709
+
}
710
+
}
687
711
VECTOR_GRACEFUL_SHUTDOWN_LIMIT_SECS: {
688
712
description: "Set the duration in seconds to wait for graceful shutdown after SIGINT or SIGTERM are received. After the duration has passed, Vector will force shutdown. To never force shutdown, use `--no-graceful-shutdown-limit`."
0 commit comments