-
Notifications
You must be signed in to change notification settings - Fork 379
/
Copy pathregistry.js
154 lines (123 loc) · 3.35 KB
/
registry.js
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
'use strict';
const { getValueAsString } = require('./util');
function escapeString(str) {
return str.replace(/\n/g, '\\n').replace(/\\(?!n)/g, '\\\\');
}
function escapeLabelValue(str) {
if (typeof str !== 'string') {
return str;
}
return escapeString(str).replace(/"/g, '\\"');
}
const defaultMetricsOpts = {
timestamps: true
};
class Registry {
constructor() {
this._metrics = {};
this._defaultLabels = {};
}
getMetricsAsArray() {
return Object.keys(this._metrics).map(this.getSingleMetric, this);
}
getMetricAsPrometheusString(metric, conf) {
const opts = Object.assign({}, defaultMetricsOpts, conf);
const item = metric.get();
const name = escapeString(item.name);
const help = `# HELP ${name} ${escapeString(item.help)}`;
const type = `# TYPE ${name} ${item.type}`;
const defaultLabelNames = Object.keys(this._defaultLabels);
let values = '';
for (const val of item.values || []) {
val.labels = val.labels || {};
for (const labelName of defaultLabelNames) {
val.labels[labelName] =
val.labels[labelName] || this._defaultLabels[labelName];
}
let labels = '';
for (const key of Object.keys(val.labels)) {
labels += `${key}="${escapeLabelValue(val.labels[key])}",`;
}
let metricName = val.metricName || item.name;
if (labels) {
metricName += `{${labels.replace(/,$/, '')}}`;
}
let line = `${metricName} ${getValueAsString(val.value)}`;
if (opts.timestamps && val.timestamp) {
line += ` ${val.timestamp}`;
}
values += `${line.trim()}\n`;
}
return `${help}\n${type}\n${values}`.trim();
}
metrics(opts) {
let metrics = '';
for (const metric of this.getMetricsAsArray()) {
metrics += `${this.getMetricAsPrometheusString(metric, opts)}\n\n`;
}
return metrics.replace(/\n$/, '');
}
registerMetric(metricFn) {
if (
this._metrics[metricFn.name] &&
this._metrics[metricFn.name] !== metricFn
) {
throw new Error(
`A metric with the name ${metricFn.name} has already been registered.`
);
}
this._metrics[metricFn.name] = metricFn;
}
clear() {
this._metrics = {};
this._defaultLabels = {};
}
getMetricsAsJSON() {
const metrics = [];
const defaultLabelNames = Object.keys(this._defaultLabels);
for (const metric of this.getMetricsAsArray()) {
const item = metric.get();
if (item.values) {
for (const val of item.values) {
for (const labelName of defaultLabelNames) {
val.labels[labelName] =
val.labels[labelName] || this._defaultLabels[labelName];
}
}
}
metrics.push(item);
}
return metrics;
}
removeSingleMetric(name) {
delete this._metrics[name];
}
getSingleMetricAsString(name) {
return this.getMetricAsPrometheusString(this._metrics[name]);
}
getSingleMetric(name) {
return this._metrics[name];
}
setDefaultLabels(labels) {
this._defaultLabels = labels;
}
resetMetrics() {
for (const metric in this._metrics) {
this._metrics[metric].reset();
}
}
get contentType() {
return 'text/plain; version=0.0.4; charset=utf-8';
}
static merge(registers) {
const mergedRegistry = new Registry();
const metricsToMerge = registers.reduce(
(acc, reg) => acc.concat(reg.getMetricsAsArray()),
[]
);
metricsToMerge.forEach(mergedRegistry.registerMetric, mergedRegistry);
return mergedRegistry;
}
}
module.exports = Registry;
module.exports.globalRegistry = new Registry();