From bbda6a8bb77f00e8fcef70661e7d91627a7ab272 Mon Sep 17 00:00:00 2001 From: Todd Gruben Date: Fri, 11 Apr 2014 10:53:48 -0500 Subject: [PATCH] prefix stats with pilosa --- util/statd.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/statd.go b/util/statd.go index 19535d2e4..2c89289dc 100644 --- a/util/statd.go +++ b/util/statd.go @@ -41,7 +41,8 @@ func init() { } func SendTimer(stat string, delta int64) { - count <- args{stat, delta, 1.0} + pstat := "pilosa." + stat + count <- args{pstat, delta, 1.0} } func ShutdownStats() {