15 lines
297 B
Go
15 lines
297 B
Go
|
// +build noprometheus
|
||
|
|
||
|
package instrument
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type dummyInst struct{}
|
||
|
|
||
|
func Init() Instrument {
|
||
|
return &dummyInst{}
|
||
|
}
|
||
|
|
||
|
func (i dummyInst) Visit(section string, id string, search string, fmt string) {}
|
||
|
func (i dummyInst) Duration(section string, duration time.Duration) {}
|