feat(GODT-2552): Fix review comment + use only string for Heartbeat Dimension.

This commit is contained in:
Romain LE JEUNE
2023-04-21 11:26:36 +02:00
committed by Romain Le Jeune
parent d3fc9a50f6
commit 00adb8bc22
5 changed files with 11 additions and 13 deletions

View File

@ -18,6 +18,7 @@
package telemetry
import (
"strconv"
"time"
"github.com/ProtonMail/proton-bridge/v3/internal/updater"
@ -41,7 +42,7 @@ func NewHeartbeat(manager HeartbeatManager, imapPort, smtpPort int, cacheDir, ke
}
func (heartbeat *Heartbeat) SetRollout(val float64) {
heartbeat.metrics.Dimensions.Rollout = int(val * 100)
heartbeat.metrics.Dimensions.Rollout = strconv.Itoa(int(val * 100))
}
func (heartbeat *Heartbeat) SetNbAccount(val int) {