Skip to content

Commit 4f0a170

Browse files
mneverovbwplotka
andauthored
Apply suggestions from PR review
Signed-off-by: Max Neverov <[email protected]> Co-authored-by: Bartlomiej Plotka <[email protected]>
1 parent ad53a26 commit 4f0a170

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel
3434
- [#2892](https://github.com/thanos-io/thanos/pull/2892) Receive: Receiver fails when the initial upload fails.
3535
- [#2865](https://github.com/thanos-io/thanos/pull/2865) ui: Migrate Thanos Ruler UI to React
3636
- [#2964](https://github.com/thanos-io/thanos/pull/2964) Query: Add time range parameters to label APIs. Add `start` and `end` fields to Store API `LabelNamesRequest` and `LabelValuesRequest`.
37-
- [#2996](https://github.com/thanos-io/thanos/pull/2996) Sidecar: Add `reloader_config_errors_total` metric. Add new flags `--reloader.watch-interval`, and `--reloader.retry-interval`.
37+
- [#2996](https://github.com/thanos-io/thanos/pull/2996) Sidecar: Add `reloader_config_apply_errors_total` metric. Add new flags `--reloader.watch-interval`, and `--reloader.retry-interval`.
3838

3939
### Changed
4040

pkg/reloader/reloader.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ func New(logger log.Logger, reg prometheus.Registerer, o *Options) *Reloader {
151151
),
152152
configErrors: promauto.With(reg).NewCounter(
153153
prometheus.CounterOpts{
154-
Name: "reloader_config_errors_total",
155-
Help: "Total number of config reads that failed.",
154+
Name: "reloader_config_apply_errors_total",
155+
Help: "Total number of config applies that failed.",
156156
},
157157
),
158158
watches: promauto.With(reg).NewGauge(

0 commit comments

Comments
 (0)