Allow delta metrics in wavefront parser (#5115)

This commit is contained in:
Robert Fisher
2018-12-11 00:42:25 +00:00
committed by Daniel Nelson
parent 03a5fc9b88
commit 04dfa430ef
4 changed files with 36 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ func (s *PointScanner) Scan() (Token, string) {
return LETTER, string(ch)
} else if isNumber(ch) {
return NUMBER, string(ch)
} else if isDelta(ch) {
return DELTA, string(ch)
}
// Otherwise read the individual character.