This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
prometheus.lua
executable file
·391 lines (324 loc) · 9.62 KB
/
prometheus.lua
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
-- vim: ts=2:sw=2:sts=2:expandtab
-- luacheck: globals box
local INF = math.huge
local NAN = math.huge * 0
local DEFAULT_BUCKETS = {.005, .01, .025, .05, .075, .1, .25, .5,
.75, 1.0, 2.5, 5.0, 7.5, 10.0, INF}
local REGISTRY = nil
local Registry = {}
Registry.__index = Registry
function Registry.new()
local obj = {}
setmetatable(obj, Registry)
obj.collectors = {}
obj.callbacks = {}
return obj
end
function Registry:register(collector)
if self.collectors[collector.name]~=nil then
return self.collectors[collector.name]
end
self.collectors[collector.name] = collector
return collector
end
function Registry:unregister(collector)
if self.collectors[collector.name]~=nil then
table.remove(self.collectors, collector.name)
end
end
function Registry:collect()
for _, registered_callback in ipairs(self.callbacks) do
registered_callback()
end
local result = {}
for _, collector in pairs(self.collectors) do
for _, metric in ipairs(collector:collect()) do
table.insert(result, metric)
end
table.insert(result, '')
end
return result
end
function Registry:register_callback(callback)
local found = false
for _, registered_callback in ipairs(self.callbacks) do
if registered_callback == callback then
found = true
end
end
if not found then
table.insert(self.callbacks, callback)
end
end
local function get_registry()
if not REGISTRY then
REGISTRY = Registry.new()
end
return REGISTRY
end
local function register(collector)
local registry = get_registry()
registry:register(collector)
return collector
end
local function register_callback(callback)
local registry = get_registry()
registry:register_callback(callback)
end
local function zip(lhs, rhs)
if lhs == nil or rhs == nil then
return {}
end
local len = math.min(#lhs, #rhs)
local result = {}
for i=1,len do
table.insert(result, {lhs[i], rhs[i]})
end
return result
end
local function metric_to_string(value)
if value == INF then
return "+Inf"
elseif value == -INF then
return "-Inf"
elseif value ~= value then
return "Nan"
else
return tostring(value)
end
end
local function escape_string(str)
return str
:gsub("\\", "\\\\")
:gsub("\n", "\\n")
:gsub('"', '\\"')
end
local function labels_to_string(label_pairs)
if #label_pairs == 0 then
return ""
end
local label_parts = {}
for _, label in ipairs(label_pairs) do
local label_name = label[1]
local label_value = label[2]
local label_value_escaped = escape_string(string.format("%s", label_value))
table.insert(label_parts, label_name .. '="' .. label_value_escaped .. '"')
end
return "{" .. table.concat(label_parts, ",") .. "}"
end
local Counter = {}
Counter.__index = Counter
function Counter.new(name, help, labels)
local obj = {}
setmetatable(obj, Counter)
if not name then
error("Name should be set for Counter")
end
obj.name = name
obj.help = help or ""
obj.labels = labels or {}
obj.observations = {}
obj.label_values = {}
return obj
end
function Counter:inc(num, label_values)
num = num or 1
label_values = label_values or {}
if num < 0 then
error("Counter increment should not be negative")
end
local key = table.concat(label_values, '\0')
local old_value = self.observations[key] or 0
self.observations[key] = old_value + num
self.label_values[key] = label_values
end
function Counter:collect()
local result = {}
if next(self.observations) == nil then
return {}
end
table.insert(result, '# HELP '..self.name..' '..escape_string(self.help))
table.insert(result, "# TYPE "..self.name.." counter")
for key, observation in pairs(self.observations) do
local label_values = self.label_values[key]
local prefix = self.name
local labels = zip(self.labels, label_values)
local str = prefix..labels_to_string(labels)..
' '..metric_to_string(observation)
table.insert(result, str)
end
return result
end
local Gauge = {}
Gauge.__index = Gauge
function Gauge.new(name, help, labels)
local obj = {}
setmetatable(obj, Gauge)
if not name then
error("Name should be set for Gauge")
end
obj.name = name
obj.help = help or ""
obj.labels = labels or {}
obj.observations = {}
obj.label_values = {}
return obj
end
function Gauge:inc(num, label_values)
num = num or 1
label_values = label_values or {}
local key = table.concat(label_values, '\0')
local old_value = self.observations[key] or 0
self.observations[key] = old_value + num
self.label_values[key] = label_values
end
function Gauge:dec(num, label_values)
num = num or 1
label_values = label_values or {}
local key = table.concat(label_values, '\0')
local old_value = self.observations[key] or 0
self.observations[key] = old_value - num
self.label_values[key] = label_values
end
function Gauge:set(num, label_values)
num = num or 0
label_values = label_values or {}
local key = table.concat(label_values, '\0')
self.observations[key] = num
self.label_values[key] = label_values
end
function Gauge:collect()
local result = {}
if next(self.observations) == nil then
return {}
end
table.insert(result, '# HELP '..self.name..' '..escape_string(self.help))
table.insert(result, "# TYPE "..self.name.." gauge")
for key, observation in pairs(self.observations) do
local label_values = self.label_values[key]
local prefix = self.name
local labels = zip(self.labels, label_values)
local str = prefix..labels_to_string(labels)..
' '..metric_to_string(observation)
table.insert(result, str)
end
return result
end
local Histogram = {}
Histogram.__index = Histogram
function Histogram.new(name, help, labels,
buckets)
local obj = {}
setmetatable(obj, Histogram)
if not name then
error("Name should be set for Histogram")
end
obj.name = name
obj.help = help or ""
obj.labels = labels or {}
obj.buckets = buckets or DEFAULT_BUCKETS
table.sort(obj.buckets)
if obj.buckets[#obj.buckets] ~= INF then
obj.buckets[#obj.buckets+1] = INF
end
obj.observations = {}
obj.label_values = {}
obj.counts = {}
obj.sums = {}
return obj
end
function Histogram:observe(num, label_values)
num = num or 0
label_values = label_values or {}
local key = table.concat(label_values, '\0')
local obs
if self.observations[key] == nil then
obs = {}
for i=1, #self.buckets do
obs[i] = 0
end
self.observations[key] = obs
self.label_values[key] = label_values
self.counts[key] = 0
self.sums[key] = 0
else
obs = self.observations[key]
end
self.counts[key] = self.counts[key] + 1
self.sums[key] = self.sums[key] + num
for i, bucket in ipairs(self.buckets) do
if num <= bucket then
obs[i] = obs[i] + 1
end
end
end
function Histogram:collect()
local result = {}
if next(self.observations) == nil then
return {}
end
table.insert(result, '# HELP '..self.name..' '..escape_string(self.help))
table.insert(result, "# TYPE "..self.name.." histogram")
for key, observation in pairs(self.observations) do
local label_values = self.label_values[key]
local prefix = self.name
local labels = zip(self.labels, label_values)
labels[#labels+1] = {le="0"}
for i, bucket in ipairs(self.buckets) do
labels[#labels] = {"le", metric_to_string(bucket)}
local str = prefix.."_bucket"..labels_to_string(labels)..
' '..metric_to_string(observation[i])
table.insert(result, str)
end
table.remove(labels, #labels)
table.insert(result,
prefix.."_sum"..labels_to_string(labels)..' '..tostring(self.sums[key]):gsub('ULL$', ''))
table.insert(result,
prefix.."_count"..labels_to_string(labels)..' '..tostring(self.counts[key]):gsub('ULL$', ''))
end
return result
end
-- #################### Public API ####################
local function counter(name, help, labels)
local obj = Counter.new(name, help, labels)
obj = register(obj)
return obj
end
local function gauge(name, help, labels)
local obj = Gauge.new(name, help, labels)
obj = register(obj)
return obj
end
local function histogram(name, help, labels, buckets)
local obj = Histogram.new(name, help, labels, buckets)
obj = register(obj)
return obj
end
local function collect()
local registry = get_registry()
return table.concat(registry:collect(), '\n')..'\n'
end
local function collect_http()
return {
status = 200,
headers = { ['content-type'] = 'text/plain; charset=utf8' },
body = collect()
}
end
local function clear()
local registry = get_registry()
registry.collectors = {}
registry.callbacks = {}
end
local function init()
local registry = get_registry()
local tarantool_metrics = require('prometheus.tarantool-metrics')
registry:register_callback(tarantool_metrics.measure_tarantool_metrics)
end
return {counter=counter,
gauge=gauge,
histogram=histogram,
collect=collect,
collect_http=collect_http,
clear=clear,
init=init}