Skip to content

Commit 31e7597

Browse files
committed
Display custom metrics for pods if they are available.
1 parent 865715f commit 31e7597

File tree

4 files changed

+144
-15
lines changed

4 files changed

+144
-15
lines changed

app/scripts/constants.js

+3
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ window.OPENSHIFT_CONSTANTS = {
6464

6565
// true indicates that deployment metrics should be disabled on the web console overview
6666
DISABLE_OVERVIEW_METRICS: false,
67+
68+
// true indicates that custom metrics should be disabled when viewing pod metrics
69+
DISABLE_CUSTOM_METRICS: false,
6770

6871
// true indicates that none of the routers support wildcard subdomains and
6972
// removes the option from the route creation form.

app/scripts/directives/podMetrics.js

+36
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,41 @@ angular.module('openshiftConsole')
9595
});
9696
}
9797

98+
if (!window.OPENSHIFT_CONSTANTS.DISABLE_CUSTOM_METRICS) {
99+
// Load any custom metrics onto the page
100+
MetricsService.getCustomMetrics(scope.pod).then(
101+
function(response) {
102+
angular.forEach(response, function(metric) {
103+
104+
// set the label to the description if specified
105+
var label = metric.description || metric.name;
106+
107+
// get the unit value if specified
108+
var unit = metric.unit || "";
109+
110+
scope.metrics.push({
111+
label: label,
112+
units: unit,
113+
chartPrefix: "custom-" + _.uniqueId('custom-metric-'),
114+
chartType: "spline",
115+
116+
datasets: [
117+
{
118+
id: "custom/" + metric.name,
119+
label: label,
120+
type: metric.type,
121+
data: []
122+
},
123+
]
124+
});
125+
126+
});
127+
// update the page with the new charts.
128+
update();
129+
}
130+
);
131+
}
132+
98133
// Set to true when any data has been loaded (or failed to load).
99134
scope.loaded = false;
100135
scope.noData = true;
@@ -260,6 +295,7 @@ angular.module('openshiftConsole')
260295
var lastPoint;
261296
var config = {
262297
metric: dataset.id,
298+
type: dataset.type,
263299
bucketDuration: getBucketDuration()
264300
};
265301

app/scripts/services/metrics.js

+48-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
angular.module("openshiftConsole")
44
.factory("MetricsService", function($filter, $http, $q, $rootScope, APIDiscovery) {
55
var POD_GAUGE_TEMPLATE = "/gauges/{containerName}%2F{podUID}%2F{metric}/data";
6+
var POD_COUNTER_TEMPLATE = "/counters/{containerName}%2F{podUID}%2F{metric}/data";
67

78
var metricsURL;
89
function getMetricsURL() {
@@ -50,7 +51,13 @@ angular.module("openshiftConsole")
5051

5152
function getRequestURL(config) {
5253
return getMetricsURL().then(function(metricsURL) {
53-
var template = metricsURL + POD_GAUGE_TEMPLATE;
54+
var template;
55+
// if no type is specified, it is assumed the metric is a gauge
56+
if (config.type === "counter") {
57+
template = metricsURL + POD_COUNTER_TEMPLATE;
58+
} else {
59+
template = metricsURL + POD_GAUGE_TEMPLATE;
60+
}
5461
return URI.expand(template, {
5562
podUID: config.pod.metadata.uid,
5663
containerName: config.containerName,
@@ -169,6 +176,44 @@ angular.module("openshiftConsole")
169176
});
170177
};
171178

179+
// Returns custom metrics available for a particular pod
180+
var getCustomMetrics = function(pod) {
181+
var namespace = pod.metadata.namespace;
182+
var podId = pod.metadata.uid;
183+
184+
return getMetricsURL().then(function(metricsURL) {
185+
186+
if (!metricsURL) {
187+
return null;
188+
}
189+
190+
var url = metricsURL + "/metrics";
191+
192+
var params = {
193+
tags: "custom_metric:true,pod_id:" + podId
194+
};
195+
196+
return $http.get(url, {
197+
auth: {},
198+
headers: {
199+
Accept: 'application/json',
200+
'Hawkular-Tenant': namespace
201+
},
202+
params: params
203+
}).then(function(response) {
204+
return _.map(response.data, function(value) {
205+
return {
206+
name: value.tags.metric_name,
207+
unit: value.tags.units,
208+
description: value.tags.description,
209+
type: value.type
210+
};
211+
});
212+
});
213+
});
214+
};
215+
216+
172217
return {
173218
// Check if the metrics service is available. The service is considered
174219
// available if a metrics URL is set. Returns a promise resolved with a
@@ -255,6 +300,7 @@ angular.module("openshiftConsole")
255300
// end: end time in millis (optional)
256301
//
257302
// Returns a promise resolved with the metrics data.
258-
getPodMetrics: getPodMetrics
303+
getPodMetrics: getPodMetrics,
304+
getCustomMetrics: getCustomMetrics,
259305
};
260306
});

dist/scripts/scripts.js

+57-13
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ CLI:{
5555
},
5656
DEFAULT_HPA_CPU_TARGET_PERCENT:80,
5757
DISABLE_OVERVIEW_METRICS:!1,
58+
DISABLE_CUSTOM_METRICS:!1,
5859
DISABLE_WILDCARD_ROUTES:!0,
5960
AVAILABLE_KINDS_BLACKLIST:[ "Binding", "Ingress", "DeploymentConfigRollback" ],
6061
ENABLE_TECH_PREVIEW_FEATURE:{
@@ -2929,15 +2930,15 @@ return a ? a + "/metrics/stats/query" :a;
29292930
}
29302931
function j(a) {
29312932
return f().then(function(b) {
2932-
var c = b + n;
2933-
return URI.expand(c, {
2933+
var c;
2934+
return c = "counter" === a.type ? b + o :b + n, URI.expand(c, {
29342935
podUID:a.pod.metadata.uid,
29352936
containerName:a.containerName,
29362937
metric:a.metric
29372938
}).toString();
29382939
});
29392940
}
2940-
var k, l, m, n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", o = function(a) {
2941+
var k, l, m, n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", o = "/counters/{containerName}%2F{podUID}%2F{metric}/data", p = function(a) {
29412942
return f().then(function(c) {
29422943
return !!c && (!a || (!!l || !m && b.get(c).then(function() {
29432944
return l = !0, !0;
@@ -2948,13 +2949,13 @@ response:a
29482949
}), !1;
29492950
})));
29502951
});
2951-
}, p = function(a) {
2952+
}, q = function(a) {
29522953
var b = a.split("/");
29532954
return {
29542955
podUID:b[1],
29552956
descriptor:b[2] + "/" + b[3]
29562957
};
2957-
}, q = function(a, c, d) {
2958+
}, r = function(a, c, d) {
29582959
var e = _.indexBy(d.pods, "metadata.uid");
29592960
return b.post(a, c, {
29602961
auth:{},
@@ -2965,40 +2966,65 @@ Accept:"application/json",
29652966
}
29662967
}).then(function(a) {
29672968
var b = {}, c = function(a, c) {
2968-
var d = p(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
2969+
var d = q(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
29692970
_.set(b, [ d.descriptor, f ], h);
29702971
};
29712972
return _.each(a.data.counter, c), _.each(a.data.gauge, c), b;
29722973
});
2973-
}, r = _.template("descriptor_name:network/tx_rate|network/rx_rate,type:pod,pod_id:<%= uid %>"), s = _.template("descriptor_name:memory/usage|cpu/usage_rate,type:pod_container,pod_id:<%= uid %>,container_name:<%= containerName %>"), t = function(a) {
2974+
}, s = _.template("descriptor_name:network/tx_rate|network/rx_rate,type:pod,pod_id:<%= uid %>"), t = _.template("descriptor_name:memory/usage|cpu/usage_rate,type:pod_container,pod_id:<%= uid %>,container_name:<%= containerName %>"), u = function(a) {
29742975
return i().then(function(b) {
29752976
var d = {
29762977
bucketDuration:a.bucketDuration,
29772978
start:a.start
29782979
};
29792980
a.end && (d.end = a.end);
29802981
var e = [], f = h(_.map(a.pods, "metadata.uid")), g = _.assign({
2981-
tags:s({
2982+
tags:t({
29822983
uid:f,
29832984
containerName:a.containerName
29842985
})
29852986
}, d);
2986-
e.push(q(b, g, a));
2987+
e.push(r(b, g, a));
29872988
var i = _.assign({
2988-
tags:r({
2989+
tags:s({
29892990
uid:f
29902991
})
29912992
}, d);
2992-
return e.push(q(b, i, a)), c.all(e).then(function(a) {
2993+
return e.push(r(b, i, a)), c.all(e).then(function(a) {
29932994
var b = {};
29942995
return _.each(a, function(a) {
29952996
_.assign(b, a);
29962997
}), b;
29972998
});
29982999
});
3000+
}, v = function(a) {
3001+
var c = a.metadata.namespace, d = a.metadata.uid;
3002+
return f().then(function(a) {
3003+
if (!a) return null;
3004+
var e = a + "/metrics", f = {
3005+
tags:"custom_metric:true,pod_id:" + d
29993006
};
3007+
return b.get(e, {
3008+
auth:{},
3009+
headers:{
3010+
Accept:"application/json",
3011+
"Hawkular-Tenant":c
3012+
},
3013+
params:f
3014+
}).then(function(a) {
3015+
return _.map(a.data, function(a) {
30003016
return {
3001-
isAvailable:o,
3017+
name:a.tags.metric_name,
3018+
unit:a.tags.units,
3019+
description:a.tags.description,
3020+
type:a.type
3021+
};
3022+
});
3023+
});
3024+
});
3025+
};
3026+
return {
3027+
isAvailable:p,
30023028
getMetricsURL:f,
30033029
get:function(a) {
30043030
return j(a).then(function(c) {
@@ -3044,7 +3070,8 @@ usage:_.head(g(b.data))
30443070
});
30453071
});
30463072
},
3047-
getPodMetrics:t
3073+
getPodMetrics:u,
3074+
getCustomMetrics:v
30483075
};
30493076
} ]), angular.module("openshiftConsole").factory("MetricsCharts", [ "$timeout", "ConversionService", function(a, b) {
30503077
var c = function(a, c) {
@@ -11264,6 +11291,7 @@ return Math.floor(r() / F) + "ms";
1126411291
function t(a, b, c) {
1126511292
var d, e = {
1126611293
metric:b.id,
11294+
type:b.type,
1126711295
bucketDuration:s()
1126811296
};
1126911297
return b.data && b.data.length ? (d = _.last(b.data), e.start = d.end) :e.start = c, m.pod ? _.assign(e, {
@@ -11382,6 +11410,22 @@ id:"network/rx_rate",
1138211410
label:"Received",
1138311411
data:[]
1138411412
} ]
11413+
}), window.OPENSHIFT_CONSTANTS.DISABLE_CUSTOM_METRICS || j.getCustomMetrics(m.pod).then(function(a) {
11414+
angular.forEach(a, function(a) {
11415+
var b = a.description || a.name, c = a.unit || "";
11416+
m.metrics.push({
11417+
label:b,
11418+
units:c,
11419+
chartPrefix:"custom-" + _.uniqueId("custom-metric-"),
11420+
chartType:"spline",
11421+
datasets:[ {
11422+
id:"custom/" + a.name,
11423+
label:b,
11424+
type:a.type,
11425+
data:[]
11426+
} ]
11427+
});
11428+
}), z();
1138511429
}), m.loaded = !1, m.noData = !0, m.showComputeUnitsHelp = function() {
1138611430
k.showComputeUnitsHelp();
1138711431
}, j.getMetricsURL().then(function(a) {

0 commit comments

Comments
 (0)