-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalues.go
35 lines (29 loc) · 859 Bytes
/
values.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// -*- tab-width: 2 -*-
package counters
// this file has implementations for "value" type metrics (e.g. CPU usage, # go routines
import (
"log"
"strings"
)
// Set is the main value API - will create value metric, and get the
// caller func for suffix, as needed. One line does it all.
func Set(name string, val float64) {
suffix := getCallerFunctionName()
SetSuffix(name, val, suffix)
}
// SetSuffix is a bit faster API - the func name lookup is a bit slow.
func SetSuffix(name string, val float64, suffix string) {
j := getChannel()
select { // non-blocking will drop overflow
case theCtx.v[j] <- valueMsg{name, suffix, val}:
// good
default: // bad but ok
}
}
func logValue(name string, mc *value) {
fmtString := strings.ReplaceAll(theCtx.fmtString, "d", "f") // fragile
log.Printf(fmtString,
name,
mc.data,
mc.data-mc.oldData)
}