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
Add new metrics to aid troubleshooting tombstone convergence. (#4231)
* Add new metrics to aid troubleshooting tombstone convergence.
- `memberlist_client_kv_store_value_tombstones`
Expose the number of tombstones currently in the value for each key
in the store. If the tombstones are being propagated as expected,
then each instance should have the same value for this metric.
- `memberlist_client_kv_store_value_tombstones_removed_total`
Count the number of tombstones which have been removed because they
aged out. This can be used to troubleshoot whether tombstones are
being removed too soon (i.e. before the state is converged).
- `memberlist_client_messages_to_broadcast_dropped_total`
Count occurrences of messages being quietly dropped when they were
expecting to have been broadcast. As log messages already existed
for these events, the logs have had the `key` field added instead
of exposing per-key metrics, for consistency with other metrics
of this nature in the package.
Signed-off-by: Steve Simpson <[email protected]>
* Review comments.
Signed-off-by: Steve Simpson <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,10 @@
33
33
*[ENHANCEMENT] Added zone-awareness support to alertmanager for use when sharding is enabled. When zone-awareness is enabled, alerts will be replicated across availability zones. #4204
34
34
*[ENHANCEMENT] Added `tenant_ids` tag to tracing spans #4147
35
35
*[ENHANCEMENT] Ring, query-frontend: Avoid using automatic private IPs (APIPA) when discovering IP address from the interface during the registration of the instance in the ring, or by query-frontend when used with query-scheduler. APIPA still used as last resort with logging indicating usage. #4032
36
+
*[ENHANCEMENT] Memberlist: introduced new metrics to aid troubleshooting tombstone convergence: #4231
0 commit comments