forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
7 years ago
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func ExampleOpenTSDB() {
|
||
|
addr, _ := net.ResolveTCPAddr("net", ":2003")
|
||
|
go OpenTSDB(DefaultRegistry, 1*time.Second, "some.prefix", addr)
|
||
|
}
|
||
|
|
||
|
func ExampleOpenTSDBWithConfig() {
|
||
|
addr, _ := net.ResolveTCPAddr("net", ":2003")
|
||
|
go OpenTSDBWithConfig(OpenTSDBConfig{
|
||
|
Addr: addr,
|
||
|
Registry: DefaultRegistry,
|
||
|
FlushInterval: 1 * time.Second,
|
||
|
DurationUnit: time.Millisecond,
|
||
|
})
|
||
|
}
|