Skip to content

Commit fd0dcfd

Browse files
authored
chore: split reconcile duration seconds into buckets (#594)
* chore: split reconcile duration seconds into buckets * docs: add changelog
1 parent 2ccf990 commit fd0dcfd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This changelog documents user-relevant changes to the GitHub runner charm.
1717

1818
## 2025-07-16
1919

20+
- Split the reconcile_duration buckets for Prometheus metrics into a larger bucket set.
2021
- Fix the incorrect default value of the aproxy-exclude-addresses configuration.
2122

2223
## 2025-07-09

github-runner-manager/src/github_runner_manager/metrics/reconcile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
name="reconcile_duration_seconds",
1212
documentation="Duration of reconciliation (seconds)",
1313
labelnames=[LABEL_FLAVOR],
14+
buckets=[60, 2 * 60, 5 * 60, 10 * 60, 15 * 60, float("inf")],
1415
)
1516
EXPECTED_RUNNERS_COUNT = Gauge(
1617
name="expected_runners_count",

0 commit comments

Comments
 (0)