mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
missing "." in StatsD prefix
This commit is contained in:
parent
19ff6a2bd5
commit
815c647bea
2 changed files with 3 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ import (
|
|||
|
||||
const (
|
||||
// Prefix is appended to each metric event name
|
||||
Prefix = "pilosa"
|
||||
Prefix = "pilosa."
|
||||
|
||||
// BufferLen Stats lient buffer size.
|
||||
BufferLen = 1024
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@
|
|||
package datadog_test
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
|
|
@ -28,6 +29,7 @@ func TestStatsClient_WithTags(t *testing.T) {
|
|||
t.Fatal(err)
|
||||
}
|
||||
defer c.Close()
|
||||
c.SetLogger(ioutil.Discard)
|
||||
|
||||
// Create a new client with additional tags.
|
||||
c1 := c.WithTags("foo", "bar")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue