From 262770be7545b54460b2a37e60e1dad9c7420fd3 Mon Sep 17 00:00:00 2001 From: Matt Fluet Date: Wed, 11 Sep 2024 10:38:37 -0400 Subject: [PATCH] Add Replication Traffic To Exported Metrics (#951) --- exporter/exporter.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/exporter/exporter.go b/exporter/exporter.go index 4f9d5b40..c740ad8c 100644 --- a/exporter/exporter.go +++ b/exporter/exporter.go @@ -277,6 +277,9 @@ func NewRedisExporter(redisURI string, opts Options) (*Exporter, error) { "total_net_input_bytes": "net_input_bytes_total", "total_net_output_bytes": "net_output_bytes_total", + "total_net_repl_input_bytes": "net_repl_input_bytes_total", + "total_net_repl_output_bytes": "net_repl_output_bytes_total", + "expired_keys": "expired_keys_total", "cached_keys": "cached_keys_total", "evicted_keys": "evicted_keys_total",