blob: 31664ccd7461064f1c148a574fdaa58e0115ea63 (
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
|
---input---
label_replace(
sum by (instance) (
irate(node_disk_read_bytes_total[2m])
) / 1024 / 1024,
"device",
'disk',
"instance",
".*"
)
---tokens---
'label_replace' Keyword.Reserved
'(' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
'sum' Keyword
' ' Text.Whitespace
'by' Keyword
' ' Text.Whitespace
'(' Operator
'instance' Name.Variable
')' Operator
' ' Text.Whitespace
'(' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
'irate' Keyword.Reserved
'(' Operator
'node_disk_read_bytes_total' Name.Variable
'[' Punctuation
'2m' Literal.String
']' Punctuation
')' Operator
'\n' Text.Whitespace
' ' Text.Whitespace
')' Operator
' ' Text.Whitespace
'/' Operator
' ' Text.Whitespace
'1024' Literal.Number.Integer
' ' Text.Whitespace
'/' Operator
' ' Text.Whitespace
'1024' Literal.Number.Integer
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'"' Punctuation
'device' Literal.String
'"' Punctuation
',' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
"'" Punctuation
'disk' 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
|