missing "." in StatsD prefix

This commit is contained in:
Michael Baird 2017-05-18 11:06:14 -05:00
parent 19ff6a2bd5
commit 815c647bea
2 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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")