Skip to content

Commit c421188

Browse files
author
OpenShift Bot
authored
Merge pull request #1109 from mwringe/custom-metrics
Merged by openshift-bot
2 parents 695c74d + 31e7597 commit c421188

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:{
@@ -2931,15 +2932,15 @@ return a ? a + "/metrics/stats/query" :a;
29312932
}
29322933
function j(a) {
29332934
return f().then(function(b) {
2934-
var c = b + n;
2935-
return URI.expand(c, {
2935+
var c;
2936+
return c = "counter" === a.type ? b + o :b + n, URI.expand(c, {
29362937
podUID:a.pod.metadata.uid,
29372938
containerName:a.containerName,
29382939
metric:a.metric
29392940
}).toString();
29402941
});
29412942
}
2942-
var k, l, m, n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", o = function(a) {
2943+
var k, l, m, n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", o = "/counters/{containerName}%2F{podUID}%2F{metric}/data", p = function(a) {
29432944
return f().then(function(c) {
29442945
return !!c && (!a || (!!l || !m && b.get(c).then(function() {
29452946
return l = !0, !0;
@@ -2950,13 +2951,13 @@ response:a
29502951
}), !1;
29512952
})));
29522953
});
2953-
}, p = function(a) {
2954+
}, q = function(a) {
29542955
var b = a.split("/");
29552956
return {
29562957
podUID:b[1],
29572958
descriptor:b[2] + "/" + b[3]
29582959
};
2959-
}, q = function(a, c, d) {
2960+
}, r = function(a, c, d) {
29602961
var e = _.indexBy(d.pods, "metadata.uid");
29612962
return b.post(a, c, {
29622963
auth:{},
@@ -2967,40 +2968,65 @@ Accept:"application/json",
29672968
}
29682969
}).then(function(a) {
29692970
var b = {}, c = function(a, c) {
2970-
var d = p(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
2971+
var d = q(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
29712972
_.set(b, [ d.descriptor, f ], h);
29722973
};
29732974
return _.each(a.data.counter, c), _.each(a.data.gauge, c), b;
29742975
});
2975-
}, 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) {
2976+
}, 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) {
29762977
return i().then(function(b) {
29772978
var d = {
29782979
bucketDuration:a.bucketDuration,
29792980
start:a.start
29802981
};
29812982
a.end && (d.end = a.end);
29822983
var e = [], f = h(_.map(a.pods, "metadata.uid")), g = _.assign({
2983-
tags:s({
2984+
tags:t({
29842985
uid:f,
29852986
containerName:a.containerName
29862987
})
29872988
}, d);
2988-
e.push(q(b, g, a));
2989+
e.push(r(b, g, a));
29892990
var i = _.assign({
2990-
tags:r({
2991+
tags:s({
29912992
uid:f
29922993
})
29932994
}, d);
2994-
return e.push(q(b, i, a)), c.all(e).then(function(a) {
2995+
return e.push(r(b, i, a)), c.all(e).then(function(a) {
29952996
var b = {};
29962997
return _.each(a, function(a) {
29972998
_.assign(b, a);
29982999
}), b;
29993000
});
30003001
});
3002+
}, v = function(a) {
3003+
var c = a.metadata.namespace, d = a.metadata.uid;
3004+
return f().then(function(a) {
3005+
if (!a) return null;
3006+
var e = a + "/metrics", f = {
3007+
tags:"custom_metric:true,pod_id:" + d
30013008
};
3009+
return b.get(e, {
3010+
auth:{},
3011+
headers:{
3012+
Accept:"application/json",
3013+
"Hawkular-Tenant":c
3014+
},
3015+
params:f
3016+
}).then(function(a) {
3017+
return _.map(a.data, function(a) {
30023018
return {
3003-
isAvailable:o,
3019+
name:a.tags.metric_name,
3020+
unit:a.tags.units,
3021+
description:a.tags.description,
3022+
type:a.type
3023+
};
3024+
});
3025+
});
3026+
});
3027+
};
3028+
return {
3029+
isAvailable:p,
30043030
getMetricsURL:f,
30053031
get:function(a) {
30063032
return j(a).then(function(c) {
@@ -3046,7 +3072,8 @@ usage:_.head(g(b.data))
30463072
});
30473073
});
30483074
},
3049-
getPodMetrics:t
3075+
getPodMetrics:u,
3076+
getCustomMetrics:v
30503077
};
30513078
} ]), angular.module("openshiftConsole").factory("MetricsCharts", [ "$timeout", "ConversionService", function(a, b) {
30523079
var c = function(a, c) {
@@ -11296,6 +11323,7 @@ return Math.floor(r() / F) + "ms";
1129611323
function t(a, b, c) {
1129711324
var d, e = {
1129811325
metric:b.id,
11326+
type:b.type,
1129911327
bucketDuration:s()
1130011328
};
1130111329
return b.data && b.data.length ? (d = _.last(b.data), e.start = d.end) :e.start = c, m.pod ? _.assign(e, {
@@ -11414,6 +11442,22 @@ id:"network/rx_rate",
1141411442
label:"Received",
1141511443
data:[]
1141611444
} ]
11445+
}), window.OPENSHIFT_CONSTANTS.DISABLE_CUSTOM_METRICS || j.getCustomMetrics(m.pod).then(function(a) {
11446+
angular.forEach(a, function(a) {
11447+
var b = a.description || a.name, c = a.unit || "";
11448+
m.metrics.push({
11449+
label:b,
11450+
units:c,
11451+
chartPrefix:"custom-" + _.uniqueId("custom-metric-"),
11452+
chartType:"spline",
11453+
datasets:[ {
11454+
id:"custom/" + a.name,
11455+
label:b,
11456+
type:a.type,
11457+
data:[]
11458+
} ]
11459+
});
11460+
}), z();
1141711461
}), m.loaded = !1, m.noData = !0, m.showComputeUnitsHelp = function() {
1141811462
k.showComputeUnitsHelp();
1141911463
}, j.getMetricsURL().then(function(a) {

0 commit comments

Comments
 (0)