Skip to content

Commit a8bd114

Browse files
author
OpenShift Bot
authored
Merge pull request #992 from spadgett/removed-unusued-stacked-metrics
Merged by openshift-bot
2 parents 8baf00b + 8765e2b commit a8bd114

File tree

2 files changed

+21
-60
lines changed

2 files changed

+21
-60
lines changed

app/scripts/services/metrics.js

+1-26
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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_STACKED_TEMPLATE = "/gauges/data?stacked=true&tags=descriptor_name:{metric},type:{type},pod_id:{podUID}";
76

87
var metricsURL;
98
function getMetricsURL() {
@@ -49,33 +48,9 @@ angular.module("openshiftConsole")
4948
});
5049
}
5150

52-
function getMetricType(metric) {
53-
switch (metric) {
54-
case 'network/rx_rate':
55-
case 'network/tx_rate':
56-
return 'pod';
57-
default:
58-
return 'pod_container';
59-
}
60-
}
61-
6251
function getRequestURL(config) {
6352
return getMetricsURL().then(function(metricsURL) {
64-
var template;
65-
var type = getMetricType(config.metric);
66-
67-
// Are we requesting stacked pod metrics?
68-
if (config.stacked) {
69-
template = metricsURL + POD_STACKED_TEMPLATE;
70-
return URI.expand(template, {
71-
podUID: config.pod.metadata.uid,
72-
metric: config.metric,
73-
type: type
74-
}).toString();
75-
}
76-
77-
// Otherwise, get metrics for a pod.
78-
template = metricsURL + POD_GAUGE_TEMPLATE;
53+
var template = metricsURL + POD_GAUGE_TEMPLATE;
7954
return URI.expand(template, {
8055
podUID: config.pod.metadata.uid,
8156
containerName: config.containerName,

dist/scripts/scripts.js

+20-34
Original file line numberDiff line numberDiff line change
@@ -2867,8 +2867,8 @@ removeSubject:j
28672867
};
28682868
} ]), angular.module("openshiftConsole").factory("MetricsService", [ "$filter", "$http", "$q", "$rootScope", "APIDiscovery", function(a, b, c, d, e) {
28692869
function f() {
2870-
return angular.isDefined(l) ? c.when(l) :e.getMetricsURL().then(function(a) {
2871-
return l = (a || "").replace(/\/$/, "");
2870+
return angular.isDefined(k) ? c.when(k) :e.getMetricsURL().then(function(a) {
2871+
return k = (a || "").replace(/\/$/, "");
28722872
});
28732873
}
28742874
function g(a) {
@@ -2888,47 +2888,33 @@ return a ? a + "/metrics/stats/query" :a;
28882888
});
28892889
}
28902890
function j(a) {
2891-
switch (a) {
2892-
case "network/rx_rate":
2893-
case "network/tx_rate":
2894-
return "pod";
2895-
2896-
default:
2897-
return "pod_container";
2898-
}
2899-
}
2900-
function k(a) {
29012891
return f().then(function(b) {
2902-
var c, d = j(a.metric);
2903-
return a.stacked ? (c = b + p, URI.expand(c, {
2904-
podUID:a.pod.metadata.uid,
2905-
metric:a.metric,
2906-
type:d
2907-
}).toString()) :(c = b + o, URI.expand(c, {
2892+
var c = b + n;
2893+
return URI.expand(c, {
29082894
podUID:a.pod.metadata.uid,
29092895
containerName:a.containerName,
29102896
metric:a.metric
2911-
}).toString());
2897+
}).toString();
29122898
});
29132899
}
2914-
var l, m, n, o = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", p = "/gauges/data?stacked=true&tags=descriptor_name:{metric},type:{type},pod_id:{podUID}", q = function(a) {
2900+
var k, l, m, n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data", o = function(a) {
29152901
return f().then(function(c) {
2916-
return !!c && (!a || (!!m || !n && b.get(c).then(function() {
2917-
return m = !0, !0;
2902+
return !!c && (!a || (!!l || !m && b.get(c).then(function() {
2903+
return l = !0, !0;
29182904
}, function(a) {
2919-
return n = !0, d.$broadcast("metrics-connection-failed", {
2905+
return m = !0, d.$broadcast("metrics-connection-failed", {
29202906
url:c,
29212907
response:a
29222908
}), !1;
29232909
})));
29242910
});
2925-
}, r = function(a) {
2911+
}, p = function(a) {
29262912
var b = a.split("/");
29272913
return {
29282914
podUID:b[1],
29292915
descriptor:b[2] + "/" + b[3]
29302916
};
2931-
}, s = function(a, c, d) {
2917+
}, q = function(a, c, d) {
29322918
var e = _.indexBy(d.pods, "metadata.uid");
29332919
return b.post(a, c, {
29342920
auth:{},
@@ -2939,31 +2925,31 @@ Accept:"application/json",
29392925
}
29402926
}).then(function(a) {
29412927
var b = {}, c = function(a, c) {
2942-
var d = r(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
2928+
var d = p(c), f = _.get(e, [ d.podUID, "metadata", "name" ]), h = g(a);
29432929
_.set(b, [ d.descriptor, f ], h);
29442930
};
29452931
return _.each(a.data.counter, c), _.each(a.data.gauge, c), b;
29462932
});
2947-
}, t = _.template("descriptor_name:network/tx_rate|network/rx_rate,type:pod,pod_id:<%= uid %>"), u = _.template("descriptor_name:memory/usage|cpu/usage_rate,type:pod_container,pod_id:<%= uid %>,container_name:<%= containerName %>"), v = function(a) {
2933+
}, 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) {
29482934
return i().then(function(b) {
29492935
var d = {
29502936
bucketDuration:a.bucketDuration,
29512937
start:a.start
29522938
};
29532939
a.end && (d.end = a.end);
29542940
var e = [], f = h(_.map(a.pods, "metadata.uid")), g = _.assign({
2955-
tags:u({
2941+
tags:s({
29562942
uid:f,
29572943
containerName:a.containerName
29582944
})
29592945
}, d);
2960-
e.push(s(b, g, a));
2946+
e.push(q(b, g, a));
29612947
var i = _.assign({
2962-
tags:t({
2948+
tags:r({
29632949
uid:f
29642950
})
29652951
}, d);
2966-
return e.push(s(b, i, a)), c.all(e).then(function(a) {
2952+
return e.push(q(b, i, a)), c.all(e).then(function(a) {
29672953
var b = {};
29682954
return _.each(a, function(a) {
29692955
_.assign(b, a);
@@ -2972,10 +2958,10 @@ _.assign(b, a);
29722958
});
29732959
};
29742960
return {
2975-
isAvailable:q,
2961+
isAvailable:o,
29762962
getMetricsURL:f,
29772963
get:function(a) {
2978-
return k(a).then(function(c) {
2964+
return j(a).then(function(c) {
29792965
if (!c) return null;
29802966
var d = {
29812967
bucketDuration:a.bucketDuration,
@@ -2996,7 +2982,7 @@ data:g(b.data)
29962982
});
29972983
});
29982984
},
2999-
getPodMetrics:v
2985+
getPodMetrics:t
30002986
};
30012987
} ]), angular.module("openshiftConsole").factory("StorageService", [ "APIService", "DataService", function(a, b) {
30022988
return {

0 commit comments

Comments
 (0)