Skip to content

Commit aeb62b8

Browse files
authored
Fix retries in prometheus.write.queue (#4054)
1 parent eec0ac5 commit aeb62b8

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ Main (unreleased)
5656

5757
- Fix issues with `prometheus.exporter.windows` not propagating `dns` collector config. (@dehaansa)
5858

59+
- Fixed a bug in `prometheus.write.queue` which caused retries even when `max_retry_attempts` was set to `0`. (@ptodev)
60+
5961
v1.10.0
6062
-----------------
6163

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ require (
8080
github.com/grafana/snowflake-prometheus-exporter v0.0.0-20250627131542-0c2feac3a700
8181
github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0
8282
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329
83-
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4
83+
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27
8484
github.com/hashicorp/consul/api v1.32.1
8585
github.com/hashicorp/go-discover v1.1.0
8686
github.com/hashicorp/go-multierror v1.1.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,8 +1346,8 @@ github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0 h1:bjh0PVYSVVFxzINqPF
13461346
github.com/grafana/tail v0.0.0-20230510142333-77b18831edf0/go.mod h1:7t5XR+2IA8P2qggOAHTj/GCZfoLBle3OvNSYh1VkRBU=
13471347
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329 h1:Rs4H1yv2Abk3xE82qpyhMGGA8rswAOA0HQZde/BYkFo=
13481348
github.com/grafana/vmware_exporter v0.0.5-beta.0.20250218170317-73398ba08329/go.mod h1:Z28219aViNlsLlPvuCnlgHDagRdZBAZ7JOnQg1b3eWg=
1349-
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4 h1:osKhTsqD4Kg9w+YVYL7gsNeIpft1ZrMRdN2VPNKqbhU=
1350-
github.com/grafana/walqueue v0.0.0-20250630130829-559914d5cae4/go.mod h1:uhuBvXxR2H4BStQrYrb8PPdG5nGWo9WUpOCzYUFZEqU=
1349+
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27 h1:Wb0TpBAxlHwgIZcDBhNqjwvdwz0vZzzGCIw35xFFleU=
1350+
github.com/grafana/walqueue v0.0.0-20250725102104-86087dfeca27/go.mod h1:uhuBvXxR2H4BStQrYrb8PPdG5nGWo9WUpOCzYUFZEqU=
13511351
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=
13521352
github.com/grobie/gomemcache v0.0.0-20230213081705-239240bbc445 h1:FlKQKUYPZ5yDCN248M3R7x8yu2E3yEZ0H7aLomE4EoE=
13531353
github.com/grobie/gomemcache v0.0.0-20230213081705-239240bbc445/go.mod h1:L69/dBlPQlWkcnU76WgcppK5e4rrxzQdi6LhLnK/ytA=

0 commit comments

Comments
 (0)