mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 19:00:02 -04:00
11 lines
254 B
PromQL
11 lines
254 B
PromQL
|
|
foo{path=~"^foo$"}[5m] or
|
||
|
|
# ^ @string.regexp
|
||
|
|
foo{path!~"[a-zA-Z0-9]{1,3}"}[5m] or
|
||
|
|
# ^ @string.regexp
|
||
|
|
foo{path="/api/users/{userId}"}[5m] or
|
||
|
|
# ^ @string
|
||
|
|
foo{path!="/api/users/{userId}"}[5m]
|
||
|
|
# ^ @string
|
||
|
|
|
||
|
|
# vim: ft=promql
|