chore:remove constant from function (#2884)

Signed-off-by: tyltr <tylitianrui@126.com>
This commit is contained in:
tyltr 2024-01-29 20:09:38 +08:00 committed by GitHub
parent 94ddad4dec
commit 34467b1d7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -38,6 +38,9 @@ const (
// 1 second in // 1 second in
nanoSeconds = 1000000000 nanoSeconds = 1000000000
microSeconds = 1000000 microSeconds = 1000000
// See NOTES in adjtimex(2).
ppm16frac = 1000000.0 * 65536.0
) )
type timexCollector struct { type timexCollector struct {
@ -183,8 +186,6 @@ func (c *timexCollector) Update(ch chan<- prometheus.Metric) error {
} else { } else {
divisor = microSeconds divisor = microSeconds
} }
// See NOTES in adjtimex(2).
const ppm16frac = 1000000.0 * 65536.0
ch <- c.syncStatus.mustNewConstMetric(syncStatus) ch <- c.syncStatus.mustNewConstMetric(syncStatus)
ch <- c.offset.mustNewConstMetric(float64(timex.Offset) / divisor) ch <- c.offset.mustNewConstMetric(float64(timex.Offset) / divisor)