Skip to content

Commit

Permalink
fix: extend k8s event informer timeout (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrwiersma authored Jun 24, 2024
1 parent 08923b5 commit d225ad3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Main (unreleased)

- Added a success rate panel on the Prometheus Components dashboard. (@thampiotr)

### Bugfixes

- Fixed an issue with `loki.source.kubernetes_events` not starting in large clusters due to short informer sync timeout. (@nrwiersma)

v1.2.0-rc.0
-----------------

Expand Down Expand Up @@ -62,7 +66,7 @@ v1.2.0-rc.0

- Added `scrape_protocols` option to `prometheus.scrape`, which allows to
control the preferred order of scrape protocols. (@thampiotr)

- Add support for configuring CPU profile's duration scraped by `pyroscope.scrape`. (@hainenber)

- `prometheus.exporter.snowflake`: Add support for RSA key-pair authentication. (@Caleb-Hurshman)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

// Generous timeout period for configuring informers
const informerSyncTimeout = 10 * time.Second
const informerSyncTimeout = 10 * time.Minute

func init() {
component.Register(component.Registration{
Expand Down

0 comments on commit d225ad3

Please sign in to comment.