mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Allow pipe ('|') in Graphite lexer
Allow for Graphite lexer to understand metric names like 'net|usage_average'.
This commit is contained in:
parent
a79c1cb23f
commit
7f602feff4
@ -120,6 +120,7 @@ define([
|
||||
i >= 48 && i <= 57 || // 0-9
|
||||
i === 36 || // $
|
||||
i === 126 || // ~
|
||||
i === 124 || // |
|
||||
i >= 65 && i <= 90 || // A-Z
|
||||
i === 95 || // _
|
||||
i === 45 || // -
|
||||
|
Loading…
Reference in New Issue
Block a user