forked from openshift/origin-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodMetrics.js
540 lines (472 loc) · 17.6 KB
/
podMetrics.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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
'use strict';
angular.module('openshiftConsole')
.directive('podMetrics', function($filter,
$interval,
$parse,
$timeout,
$q,
$rootScope,
ChartsService,
ConversionService,
MetricsCharts,
MetricsService,
ModalsService,
usageValueFilter) {
return {
restrict: 'E',
scope: {
pod: '=',
includedMetrics: '=?', // defaults to ["cpu", "memory", "network"]
stackDonut: '=?', // Keep donut on top of sparkline (e.g. on the monitoring page)
alerts: '=?'
},
templateUrl: 'views/directives/pod-metrics.html',
link: function(scope) {
scope.includedMetrics = scope.includedMetrics || ["cpu", "memory", "network"];
var donutByMetric = {}, sparklineByMetric = {};
var intervalPromise;
var getMemoryLimit = $parse('resources.limits.memory');
var getCPULimit = $parse('resources.limits.cpu');
// Number of data points to display on the chart.
var numDataPoints = 30;
// Set to true when the route changes so we don't update charts that no longer exist.
var destroyed = false;
scope.uniqueID = MetricsCharts.uniqueID();
// Metrics to display.
scope.metrics = [];
if (_.includes(scope.includedMetrics, "memory")) {
scope.metrics.push({
label: "Memory",
units: "MiB",
chartPrefix: "memory-",
convert: ConversionService.bytesToMiB,
containerMetric: true,
datasets: [
{
id: "memory/usage",
label: "Memory",
data: []
}
]
});
}
if (_.includes(scope.includedMetrics, "cpu")) {
scope.metrics.push({
label: "CPU",
units: "cores",
chartPrefix: "cpu-",
convert: ConversionService.millicoresToCores,
// Max number of decimal places to show for usage donut.
usagePrecision: 3,
containerMetric: true,
datasets: [
{
id: "cpu/usage_rate",
label: "CPU",
data: []
}
]
});
}
if (_.includes(scope.includedMetrics, "network")) {
scope.metrics.push({
label: "Network",
units: "KiB/s",
chartPrefix: "network-",
chartType: "spline",
convert: ConversionService.bytesToKiB,
datasets: [
{
id: "network/tx_rate",
label: "Sent",
data: []
},
{
id: "network/rx_rate",
label: "Received",
data: []
}
]
});
}
if (!window.OPENSHIFT_CONSTANTS.DISABLE_CUSTOM_METRICS) {
// Load any custom metrics onto the page
MetricsService.getCustomMetrics(scope.pod).then(
function(response) {
angular.forEach(response, function(metric) {
// set the label to the description if specified
var label = metric.description || metric.name;
// get the unit value if specified
var unit = metric.unit || "";
scope.metrics.push({
label: label,
units: unit,
chartPrefix: "custom-" + _.uniqueId('custom-metric-'),
chartType: "spline",
datasets: [
{
id: "custom/" + metric.name,
label: label,
type: metric.type,
data: []
},
]
});
});
// update the page with the new charts.
update();
}
);
}
// Set to true when any data has been loaded (or failed to load).
scope.loaded = false;
scope.noData = true;
scope.showComputeUnitsHelp = function() {
ModalsService.showComputeUnitsHelp();
};
// Get the URL to show in error messages.
MetricsService.getMetricsURL().then(function(url) {
scope.metricsURL = url;
});
// Relative time options.
scope.options = {
rangeOptions: MetricsCharts.getTimeRangeOptions()
};
scope.options.timeRange = _.head(scope.options.rangeOptions);
var upperFirst = $filter('upperFirst');
var createDonutConfig = function(metric) {
var chartID = '#' + metric.chartPrefix + scope.uniqueID + '-donut';
return {
bindto: chartID,
onrendered: function() {
ChartsService.updateDonutCenterText(chartID, metric.datasets[0].used,
upperFirst(metric.units) + " Used");
},
donut: {
label: {
show: false
},
width: 10
},
legend: {
show: false
},
size: {
height: 175,
widht: 175
}
};
};
var createSparklineConfig = function(metric) {
var chartID = metric.chartPrefix + scope.uniqueID + '-sparkline';
var config = MetricsCharts.getDefaultSparklineConfig(chartID, metric.units);
if (metric.datasets.length === 1) {
_.set(config, 'legend.show', false);
}
return config;
};
function getLimit(metricID) {
if (!scope.pod) {
return null;
}
var container = scope.options.selectedContainer;
switch (metricID) {
case 'memory/usage':
var memLimit = getMemoryLimit(container);
if (memLimit) {
// Convert to MiB. usageValueFilter returns bytes.
return ConversionService.bytesToMiB(usageValueFilter(memLimit));
}
break;
case 'cpu/usage_rate':
var cpuLimit = getCPULimit(container);
if (cpuLimit) {
return usageValueFilter(cpuLimit);
}
break;
}
return null;
}
function updateDonut(metric) {
var dataset = _.head(metric.datasets);
if (!dataset.total) {
return;
}
var donutData = {
type: 'donut',
columns: [
['Used', dataset.used],
['Available', Math.max(dataset.available, 0)]
],
colors: {
// Blue if not at limit, orange if at or over limit
Used: (dataset.available > 0) ? "#0088ce" : "#ec7a08",
Available: "#d1d1d1"
}
};
var donutConfig;
if (!donutByMetric[dataset.id]) {
donutConfig = createDonutConfig(metric);
donutConfig.data = donutData;
$timeout(function() {
if (destroyed) {
return;
}
donutByMetric[dataset.id] = c3.generate(donutConfig);
});
} else {
donutByMetric[dataset.id].load(donutData);
}
}
function updateSparkline(metric) {
var missingData = _.some(metric.datasets, function(dataset) {
return !dataset.data;
});
if (missingData) {
return;
}
var dataByID = {};
_.each(metric.datasets, function(dataset) {
dataByID[dataset.id] = dataset.data;
});
var sparklineData = MetricsCharts.getSparklineData(dataByID);
var chartId = metric.chartPrefix + "sparkline";
var sparklineConfig;
if (!sparklineByMetric[chartId]) {
sparklineConfig = createSparklineConfig(metric);
sparklineConfig.data = sparklineData;
if (metric.chartDataColors) {
sparklineConfig.color = { pattern: metric.chartDataColors };
}
$timeout(function() {
if (destroyed) {
return;
}
sparklineByMetric[chartId] = c3.generate(sparklineConfig);
});
} else {
sparklineByMetric[chartId].load(sparklineData);
}
}
function getStartTime() {
return "-" + scope.options.timeRange.value + "mn";
}
function getTimeRangeMillis() {
return scope.options.timeRange.value * 60 * 1000;
}
function getBucketDuration() {
return Math.floor(getTimeRangeMillis() / numDataPoints) + "ms";
}
function getConfig(metric, dataset, start) {
var lastPoint;
var config = {
metric: dataset.id,
type: dataset.type,
bucketDuration: getBucketDuration()
};
// Leave the end time off to use the server's current time as the
// end time. This prevents an issue where the donut chart shows 0
// for current usage if the client clock is ahead of the server
// clock.
if (dataset.data && dataset.data.length) {
lastPoint = _.last(dataset.data);
config.start = lastPoint.end;
} else {
config.start = start;
}
if (scope.pod) {
return _.assign(config, {
namespace: scope.pod.metadata.namespace,
pod: scope.pod,
containerName: metric.containerMetric ? scope.options.selectedContainer.name : "pod"
});
}
return null;
}
// Track the number of consecutive failures.
var failureCount = 0;
function metricsSucceeded() {
// Reset the number of failures on a successful request.
failureCount = 0;
_.each(scope.metrics, function(metric) {
updateSparkline(metric);
updateDonut(metric);
});
}
// If the first request for metrics fails, show an empty state error message.
// Otherwise show an alert if more than one consecutive request fails.
function metricsFailed(response) {
if (destroyed) {
return;
}
failureCount++;
if (scope.noData) {
// Show an empty state message if the first request for data fails.
scope.metricsError = {
status: _.get(response, 'status', 0),
details: _.get(response, 'data.errorMsg') ||
_.get(response, 'statusText') ||
"Status code " + _.get(response, 'status', 0)
};
return;
}
// If this is the first failure and a previous request succeeded, wait and try again.
if (failureCount < 2) {
return;
}
// Show an alert if we've failed more than once.
// Use scope.$id in the alert ID so that it is unique on pages that
// use the directive multiple times like monitoring.
var alertID = 'metrics-failed-' + scope.uniqueID;
scope.alerts[alertID] = {
type: 'error',
message: 'An error occurred updating metrics for pod ' + _.get(scope, 'pod.metadata.name', '<unknown>') + '.',
links: [{
href: '',
label: 'Retry',
onClick: function() {
delete scope.alerts[alertID];
// Reset failure count to 1 to trigger a retry.
failureCount = 1;
update();
}
}]
};
}
// Make sure there are no errors or missing data before updating.
function canUpdate() {
if (scope.metricsError || failureCount > 1) {
return false;
}
return scope.pod && _.get(scope, 'options.selectedContainer');
}
function updateCurrentUsage(metric, dataset, response) {
dataset.total = getLimit(dataset.id);
if (dataset.total) {
scope.hasLimits = true;
}
var currentUsage = _.get(response, 'usage.value');
if (isNaN(currentUsage)) {
currentUsage = 0;
}
if (metric.convert) {
currentUsage = metric.convert(currentUsage);
}
dataset.used = d3.round(currentUsage, metric.usagePrecision);
if (dataset.total) {
dataset.available = d3.round(dataset.total - currentUsage, metric.usagePrecision);
}
metric.totalUsed += dataset.used;
}
function updateData(dataset, response) {
scope.noData = false;
// Throw out the last data point, which is a partial bucket.
var newData = _.initial(response.data);
if (!dataset.data) {
dataset.data = newData;
return;
}
dataset.data =
_.chain(dataset.data)
// Don't include more than then last `numDataPoints`
.takeRight(numDataPoints)
// Add the new values.
.concat(newData)
.value();
}
function update() {
if (!canUpdate()) {
return;
}
// Leave the end time off to use the server's current time as the end
// time. This prevents an issue where the donut chart shows 0 for
// current usage if the client clock is ahead of the server clock.
var start = getStartTime();
var allPromises = [];
angular.forEach(scope.metrics, function(metric) {
var datasetPromises = [];
metric.totalUsed = 0;
// On metrics that require more than one set of data (e.g. network
// incoming and outgoing traffic) we perform one request for each,
// but collect and handle all requests in one single promise below.
// It's important that every metric uses the same 'start' timestamp
// so that the returned data for every metric fit in the same
// collection of 'dates' and can be displayed in exactly the same
// point in time in the graph.
angular.forEach(metric.datasets, function(dataset) {
var config = getConfig(metric, dataset, start);
if (!config) {
return;
}
var promise = MetricsService.get(config);
datasetPromises.push(promise);
// Only request current usage if we have a limit. This lets us
// show consistent values inside the donut chart no matter what
// time range is selected.
var limit = getLimit(dataset.id);
if (limit) {
allPromises.push(MetricsService.getCurrentUsage(config).then(function(response) {
updateCurrentUsage(metric, dataset, response);
}));
}
});
allPromises = allPromises.concat(datasetPromises);
// Collect all promises from every metric requested into one, so we
// have all data the chart wants at the time of the chart creation
// (or timeout updates, etc).
$q.all(datasetPromises).then(function(responses) {
if (destroyed) {
return;
}
angular.forEach(responses, function(response) {
if (!response) {
return;
}
var dataset = _.find(metric.datasets, {
id: response.metricID
});
updateData(dataset, response);
});
});
});
// Handle failures when any request fails.
$q.all(allPromises).then(metricsSucceeded, metricsFailed).finally(function() {
// Even on errors mark metrics as loaded to replace the
// "Loading..." message with "No metrics to display."
scope.loaded = true;
});
}
// Updates immediately and then on options changes.
scope.$watch('options', function() {
// Remove any existing data so that we request data for the new container or time range.
_.each(scope.metrics, function(metric) {
_.each(metric.datasets, function(dataset) {
delete dataset.data;
});
});
delete scope.metricsError;
update();
}, true);
intervalPromise = $interval(update, MetricsCharts.getDefaultUpdateInterval(), false);
$rootScope.$on('metrics.charts.resize', function() {
MetricsCharts.redraw(donutByMetric);
MetricsCharts.redraw(sparklineByMetric);
});
scope.$on('$destroy', function() {
if (intervalPromise) {
$interval.cancel(intervalPromise);
intervalPromise = null;
}
angular.forEach(donutByMetric, function(chart) {
chart.destroy();
});
donutByMetric = null;
angular.forEach(sparklineByMetric, function(chart) {
chart.destroy();
});
sparklineByMetric = null;
destroyed = true;
});
}
};
});