blob: a7462fb92c9ac09713626f0aa820660020ccaf1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
---input---
label_replace(
avg by(instance)
(irate(node_cpu_seconds_total{mode = "idle"}[5m] offset 3s)
) * 100,
"device",
"cpu",
"instance",
".*"
)
---tokens---
'label_replace' Keyword.Reserved
'(' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
'avg' Keyword
' ' Text.Whitespace
'by' Keyword
'(' Operator
'instance' Name.Variable
')' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
'(' Operator
'irate' Keyword.Reserved
'(' Operator
'node_cpu_seconds_total' Name.Variable
'{' Punctuation
'mode' Name.Label
' ' Text.Whitespace
'=' Operator
' ' Text.Whitespace
'"' Punctuation
'idle' Literal.String
'"' Punctuation
'}' Punctuation
'[' Punctuation
'5m' Literal.String
']' Punctuation
' ' Text.Whitespace
'offset' Keyword
' ' Text.Whitespace
'3s' Literal.String
')' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
')' Operator
' ' Text.Whitespace
'*' Operator
' ' Text.Whitespace
'100' Literal.Number.Integer
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'"' Punctuation
'device' Literal.String
'"' Punctuation
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'"' Punctuation
'cpu' Literal.String
'"' Punctuation
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'"' Punctuation
'instance' Literal.String
'"' Punctuation
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'"' Punctuation
'.*' Literal.String
'"' Punctuation
'\n' Text.Whitespace
')' Operator
'\n' Text.Whitespace
|