WAL tag keys are "path" not "bind".

pull/4073/head
Philip O'Toole 2015-09-10 14:10:45 -07:00
parent 6d028f9586
commit 13a302e533
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ func NewLog(path string) *Log {
// Configure expvar monitoring. It's OK to do this even if the service fails to open and
// should be done before any data could arrive for the service.
key := strings.Join([]string{"wal", path}, ":")
tags := map[string]string{"bind": path}
tags := map[string]string{"path": path}
return &Log{
path: path,