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
This change makes the memory provider channel buffer length configurable.
The previously hard-coded value of 200 is used as default.
This should result in better performance and less timeouts during sudden alert spikes,
specially if the pipeline speed is affected by slow receivers.
Signed-off-by: Siavash Safi <[email protected]>
dataDir=kingpin.Flag("storage.path", "Base path for data storage.").Default("data/").String()
148
-
retention=kingpin.Flag("data.retention", "How long to keep data for.").Default("120h").Duration()
149
-
maintenanceInterval=kingpin.Flag("data.maintenance-interval", "Interval between garbage collection and snapshotting to disk of the silences and the notification logs.").Default("15m").Duration()
150
-
maxSilences=kingpin.Flag("silences.max-silences", "Maximum number of silences, including expired silences. If negative or zero, no limit is set.").Default("0").Int()
151
-
maxSilenceSizeBytes=kingpin.Flag("silences.max-silence-size-bytes", "Maximum silence size in bytes. If negative or zero, no limit is set.").Default("0").Int()
152
-
alertGCInterval=kingpin.Flag("alerts.gc-interval", "Interval between alert GC.").Default("30m").Duration()
dataDir=kingpin.Flag("storage.path", "Base path for data storage.").Default("data/").String()
148
+
retention=kingpin.Flag("data.retention", "How long to keep data for.").Default("120h").Duration()
149
+
maintenanceInterval=kingpin.Flag("data.maintenance-interval", "Interval between garbage collection and snapshotting to disk of the silences and the notification logs.").Default("15m").Duration()
150
+
maxSilences=kingpin.Flag("silences.max-silences", "Maximum number of silences, including expired silences. If negative or zero, no limit is set.").Default("0").Int()
151
+
maxSilenceSizeBytes=kingpin.Flag("silences.max-silence-size-bytes", "Maximum silence size in bytes. If negative or zero, no limit is set.").Default("0").Int()
externalURL=kingpin.Flag("web.external-url", "The URL under which Alertmanager is externally reachable (for example, if Alertmanager is served via a reverse proxy). Used for generating relative and absolute links back to Alertmanager itself. If the URL has a path portion, it will be used to prefix all HTTP endpoints served by Alertmanager. If omitted, relevant URL components will be derived automatically.").String()
0 commit comments