tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 6d40e980fb149549bbef5d9e80dbdf886d87d207
parent a1c40c8511b841db773e82bd8024ef3581262900
Author: David Goulet <dgoulet@torproject.org>
Date:   Thu, 27 Oct 2022 11:35:27 -0400

metrics: Treat relay connections as gauge, not counter

Fixes #40699

Signed-off-by: David Goulet <dgoulet@torproject.org>

Diffstat:
Msrc/feature/relay/relay_metrics.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/feature/relay/relay_metrics.c b/src/feature/relay/relay_metrics.c @@ -94,7 +94,7 @@ static const relay_metrics_entry_t base_metrics[] = }, { .key = RELAY_METRICS_NUM_CONNECTIONS, - .type = METRICS_TYPE_COUNTER, + .type = METRICS_TYPE_GAUGE, .name = METRICS_NAME(relay_connections_total), .help = "Total number of connections", .fill_fn = fill_connections_values,