Skip to content

Commit 70e3742

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

File tree

3 files changed

+112
-2
lines changed

3 files changed

+112
-2
lines changed

app/scripts/directives/podMetrics.js

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

98+
// Load any custom metrics onto the page
99+
MetricsService.getCustomMetrics(scope.pod).then(
100+
function(response) {
101+
angular.forEach(response, function(metric) {
102+
103+
// set the label to the description if specified
104+
var label = metric.description || metric.name;
105+
106+
// get the unit value if specified
107+
var unit = metric.unit || "";
108+
109+
scope.metrics.push({
110+
label: label,
111+
units: unit,
112+
chartPrefix: "custom-" + btoa(metric.name),
113+
chartType: "spline",
114+
115+
datasets: [
116+
{
117+
id: "custom/" + metric.name,
118+
label: label,
119+
data: []
120+
},
121+
]
122+
});
123+
124+
});
125+
// update the page with the new charts.
126+
update();
127+
}
128+
);
129+
98130
// Set to true when any data has been loaded (or failed to load).
99131
scope.loaded = false;
100132
scope.noData = true;

app/scripts/services/metrics.js

+39-1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,43 @@ angular.module("openshiftConsole")
169169
});
170170
};
171171

172+
// Returns custom metrics available for a particular pod
173+
var getCustomMetrics = function(pod) {
174+
var namespace = pod.metadata.namespace;
175+
var podName = pod.metadata.name;
176+
177+
return getMetricsURL().then(function(metricsURL) {
178+
179+
if (!metricsURL) {
180+
return null;
181+
}
182+
183+
var url = metricsURL + "/metrics";
184+
185+
var params = {
186+
tags: "custom_metric:true,pod_name:" + podName
187+
};
188+
189+
return $http.get(url, {
190+
auth: {},
191+
headers: {
192+
Accept: 'application/json',
193+
'Hawkular-Tenant': namespace
194+
},
195+
params: params
196+
}).then(function(response) {
197+
return _.map(response.data, function(value) {
198+
return {
199+
name: value.tags.metric_name,
200+
unit: value.tags.units,
201+
description: value.tags.description
202+
};
203+
});
204+
});
205+
});
206+
};
207+
208+
172209
return {
173210
// Check if the metrics service is available. The service is considered
174211
// available if a metrics URL is set. Returns a promise resolved with a
@@ -255,6 +292,7 @@ angular.module("openshiftConsole")
255292
// end: end time in millis (optional)
256293
//
257294
// Returns a promise resolved with the metrics data.
258-
getPodMetrics: getPodMetrics
295+
getPodMetrics: getPodMetrics,
296+
getCustomMetrics: getCustomMetrics,
259297
};
260298
});

dist/scripts/scripts.js

+41-1
Original file line numberDiff line numberDiff line change
@@ -2996,6 +2996,30 @@ _.assign(b, a);
29962996
}), b;
29972997
});
29982998
});
2999+
}, u = function(a) {
3000+
var c = a.metadata.namespace, d = a.metadata.name;
3001+
return f().then(function(a) {
3002+
if (!a) return null;
3003+
var e = a + "/metrics", f = {
3004+
tags:"custom_metric:true,pod_name:" + d
3005+
};
3006+
return b.get(e, {
3007+
auth:{},
3008+
headers:{
3009+
Accept:"application/json",
3010+
"Hawkular-Tenant":c
3011+
},
3012+
params:f
3013+
}).then(function(a) {
3014+
return _.map(a.data, function(a) {
3015+
return {
3016+
name:a.tags.metric_name,
3017+
unit:a.tags.units,
3018+
description:a.tags.description
3019+
};
3020+
});
3021+
});
3022+
});
29993023
};
30003024
return {
30013025
isAvailable:o,
@@ -3044,7 +3068,8 @@ usage:_.head(g(b.data))
30443068
});
30453069
});
30463070
},
3047-
getPodMetrics:t
3071+
getPodMetrics:t,
3072+
getCustomMetrics:u
30483073
};
30493074
} ]), angular.module("openshiftConsole").factory("MetricsCharts", [ "$timeout", "ConversionService", function(a, b) {
30503075
var c = function(a, c) {
@@ -11382,6 +11407,21 @@ id:"network/rx_rate",
1138211407
label:"Received",
1138311408
data:[]
1138411409
} ]
11410+
}), j.getCustomMetrics(m.pod).then(function(a) {
11411+
angular.forEach(a, function(a) {
11412+
var b = a.description || a.name, c = a.unit || "";
11413+
m.metrics.push({
11414+
label:b,
11415+
units:c,
11416+
chartPrefix:"custom-" + btoa(a.name),
11417+
chartType:"spline",
11418+
datasets:[ {
11419+
id:"custom/" + a.name,
11420+
label:b,
11421+
data:[]
11422+
} ]
11423+
});
11424+
}), z();
1138511425
}), m.loaded = !1, m.noData = !0, m.showComputeUnitsHelp = function() {
1138611426
k.showComputeUnitsHelp();
1138711427
}, j.getMetricsURL().then(function(a) {

0 commit comments

Comments
 (0)