forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetrics.js
306 lines (267 loc) · 8.89 KB
/
metrics.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
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
'use strict';
angular.module("openshiftConsole")
.factory("MetricsService", function($filter, $http, $q, $rootScope, APIDiscovery) {
var POD_GAUGE_TEMPLATE = "/gauges/{containerName}%2F{podUID}%2F{metric}/data";
var POD_COUNTER_TEMPLATE = "/counters/{containerName}%2F{podUID}%2F{metric}/data";
var metricsURL;
function getMetricsURL() {
if (angular.isDefined(metricsURL)) {
return $q.when(metricsURL);
}
return APIDiscovery.getMetricsURL().then(function(url) {
// Remove trailing slash if present.
metricsURL = (url || '').replace(/\/$/, "");
return metricsURL;
});
}
function normalize(data) {
if (!data.length) {
return;
}
_.each(data, function(point) {
// Set point.value to the average or null if no average.
if (!point.value || point.value === "NaN") {
var avg = point.avg;
point.value = (avg && avg !== "NaN") ? avg : null;
}
});
return data;
}
// values must not contain regex special characters.
// Otherwise use _.map(values, _.escapeRegExp)
function matchValues(values) {
return values.join("|");
}
function getStatsQueryURL() {
return getMetricsURL().then(function(metricsURL) {
if (!metricsURL) {
return metricsURL;
}
return metricsURL + "/metrics/stats/query";
});
}
function getRequestURL(config) {
return getMetricsURL().then(function(metricsURL) {
var template;
// if no type is specified, it is assumed the metric is a gauge
if (config.type === "counter") {
template = metricsURL + POD_COUNTER_TEMPLATE;
} else {
template = metricsURL + POD_GAUGE_TEMPLATE;
}
return URI.expand(template, {
podUID: config.pod.metadata.uid,
containerName: config.containerName,
metric: config.metric
}).toString();
});
}
var connectionSucceeded, connectionFailed;
var isAvailable = function(testConnection) {
return getMetricsURL().then(function(url) {
if (!url) {
return false;
}
if (!testConnection) {
return true;
}
// A previous connection succeeded.
if (connectionSucceeded) {
return true;
}
// A previous connection failed.
if (connectionFailed) {
return false;
}
return $http.get(url).then(function() {
connectionSucceeded = true;
return true;
}, function(response) {
connectionFailed = true;
$rootScope.$broadcast('metrics-connection-failed', {
url: url,
response: response
});
return false;
});
});
};
var getMetricInfo = function(metricID) {
// Example descriptor:
// ruby-helloworld/6f7881e1-52c4-11e6-a5dc-080027893417/memory/usage
var segments = metricID.split('/');
return {
podUID: segments[1],
descriptor: segments[2] + '/' + segments[3]
};
};
var query = function(url, data, config) {
var podsByUID = _.indexBy(config.pods, 'metadata.uid');
return $http.post(url, data, {
auth: {},
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
'Hawkular-Tenant': config.namespace
}
}).then(function(response) {
var result = {};
var processResponse = function(data, metricID) {
var info = getMetricInfo(metricID);
var podName = _.get(podsByUID, [info.podUID, 'metadata', 'name']);
var normalizedData = normalize(data);
_.set(result, [info.descriptor, podName], normalizedData);
};
_.each(response.data.counter, processResponse);
_.each(response.data.gauge, processResponse);
return result;
});
};
// Network metrics are collected at the pod level.
var podQueryTemplate = _.template("descriptor_name:network/tx_rate|network/rx_rate,type:pod,pod_id:<%= uid %>");
var containerQueryTemplate = _.template("descriptor_name:memory/usage|cpu/usage_rate,type:pod_container,pod_id:<%= uid %>,container_name:<%= containerName %>");
var getPodMetrics = function(config) {
return getStatsQueryURL().then(function(url) {
var request = {
bucketDuration: config.bucketDuration,
start: config.start
};
if (config.end) {
request.end = config.end;
}
var promises = [];
var matchPods = matchValues(_.map(config.pods, 'metadata.uid'));
var containerQuery = _.assign({
tags: containerQueryTemplate({
uid: matchPods,
containerName: config.containerName
})
}, request);
promises.push(query(url, containerQuery, config));
var podQuery = _.assign({
tags: podQueryTemplate({
uid: matchPods
})
}, request);
promises.push(query(url, podQuery, config));
return $q.all(promises).then(function(results) {
var result = {};
_.each(results, function(next) {
_.assign(result, next);
});
return result;
});
});
};
// Returns custom metrics available for a particular pod
var getCustomMetrics = function(pod) {
var namespace = pod.metadata.namespace;
var podId = pod.metadata.uid;
return getMetricsURL().then(function(metricsURL) {
if (!metricsURL) {
return null;
}
var url = metricsURL + "/metrics";
var params = {
tags: "custom_metric:true,pod_id:" + podId
};
return $http.get(url, {
auth: {},
headers: {
Accept: 'application/json',
'Hawkular-Tenant': namespace
},
params: params
}).then(function(response) {
return _.map(response.data, function(value) {
return {
name: value.tags.metric_name,
unit: value.tags.units,
description: value.tags.description,
type: value.type
};
});
});
});
};
return {
// Check if the metrics service is available. The service is considered
// available if a metrics URL is set. Returns a promise resolved with a
// boolean value.
isAvailable: isAvailable,
getMetricsURL: getMetricsURL,
// Get metrics data for a container.
//
// config keyword arguments
// pod: the pod object
// containerName: the container name
// metric: the metric to check, e.g. "memory/usage"
// start: start time in millis, or relative time like "-60mn"
// end: end time in millis (optional)
//
// Returns a promise resolved with the metrics data.
get: function(config) {
return getRequestURL(config).then(function(url) {
if (!url) {
return null;
}
var params = {
bucketDuration: config.bucketDuration,
start: config.start
};
if (config.end) {
params.end = config.end;
}
return $http.get(url, {
auth: {},
headers: {
Accept: 'application/json',
'Hawkular-Tenant': config.namespace
},
params: params
}).then(function(response) {
return _.assign(response, {
metricID: config.metric,
data: normalize(response.data)
});
});
});
},
getCurrentUsage: function(config) {
return getRequestURL(config).then(function(url) {
if (!url) {
return null;
}
// Request one data point for the last minute.
var params = {
bucketDuration: '1mn',
start: '-1mn'
};
return $http.get(url, {
auth: {},
headers: {
Accept: 'application/json',
'Hawkular-Tenant': config.namespace
},
params: params
}).then(function(response) {
return _.assign(response, {
metricID: config.metric,
usage: _.head(normalize(response.data))
});
});
});
},
// Get metrics data for a collection of pods (memory, CPU, network send and received).
//
// config keyword arguments
// pods: the pods collection (hash or array)
// containerName: the container name
// start: start time in millis
// end: end time in millis (optional)
//
// Returns a promise resolved with the metrics data.
getPodMetrics: getPodMetrics,
getCustomMetrics: getCustomMetrics,
};
});