prefix stats with pilosa

This commit is contained in:
Todd Gruben 2014-04-11 10:53:48 -05:00
parent d316d05c24
commit bbda6a8bb7

View file

@ -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() {