From ad345cd63367120ea8a626fd617ee316f60e2bbf Mon Sep 17 00:00:00 2001 From: Michael Schwarz Date: Tue, 26 Mar 2024 13:50:38 +0100 Subject: [PATCH] Add uint64 to float64 cast option --- sinks/prometheusSink.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sinks/prometheusSink.go b/sinks/prometheusSink.go index 7d792cd..0a6974e 100644 --- a/sinks/prometheusSink.go +++ b/sinks/prometheusSink.go @@ -49,6 +49,8 @@ func intToFloat64(input interface{}) (float64, error) { return float64(value), nil case int64: return float64(value), nil + case uint64: + return float64(value), nil } return 0, errors.New("cannot cast value to float64") }