Skip to content

Commit b899219

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

File tree

3 files changed

+117
-2
lines changed

3 files changed

+117
-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 !== undefined) ? metric.description : metric.name;
105+
106+
// get the unit value if specified
107+
var unit = (metric.unit !== undefined) ? metric.unit : "unknown";
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

+42-1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,46 @@ 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+
var metrics = [];
198+
angular.forEach(response.data, function(value) {
199+
var metric = {
200+
name: value.tags.metric_name,
201+
unit: value.tags.units,
202+
description: value.tags.description,
203+
};
204+
metrics.push(metric);
205+
});
206+
return metrics;
207+
});
208+
});
209+
};
210+
211+
172212
return {
173213
// Check if the metrics service is available. The service is considered
174214
// available if a metrics URL is set. Returns a promise resolved with a
@@ -255,6 +295,7 @@ angular.module("openshiftConsole")
255295
// end: end time in millis (optional)
256296
//
257297
// Returns a promise resolved with the metrics data.
258-
getPodMetrics: getPodMetrics
298+
getPodMetrics: getPodMetrics,
299+
getCustomMetrics: getCustomMetrics,
259300
};
260301
});

dist/scripts/scripts.js

+43-1
Original file line numberDiff line numberDiff line change
@@ -2996,6 +2996,32 @@ _.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+
var b = [];
3015+
return angular.forEach(a.data, function(a) {
3016+
var c = {
3017+
name:a.tags.metric_name,
3018+
unit:a.tags.units,
3019+
description:a.tags.description
3020+
};
3021+
b.push(c);
3022+
}), b;
3023+
});
3024+
});
29993025
};
30003026
return {
30013027
isAvailable:o,
@@ -3044,7 +3070,8 @@ usage:_.head(g(b.data))
30443070
});
30453071
});
30463072
},
3047-
getPodMetrics:t
3073+
getPodMetrics:t,
3074+
getCustomMetrics:u
30483075
};
30493076
} ]), angular.module("openshiftConsole").factory("MetricsCharts", [ "$timeout", "ConversionService", function(a, b) {
30503077
var c = function(a, c) {
@@ -11382,6 +11409,21 @@ id:"network/rx_rate",
1138211409
label:"Received",
1138311410
data:[]
1138411411
} ]
11412+
}), j.getCustomMetrics(m.pod).then(function(a) {
11413+
angular.forEach(a, function(a) {
11414+
var b = void 0 !== a.description ? a.description :a.name, c = void 0 !== a.unit ? a.unit :"unknown";
11415+
m.metrics.push({
11416+
label:b,
11417+
units:c,
11418+
chartPrefix:"custom-" + btoa(a.name),
11419+
chartType:"spline",
11420+
datasets:[ {
11421+
id:"custom/" + a.name,
11422+
label:b,
11423+
data:[]
11424+
} ]
11425+
});
11426+
}), z();
1138511427
}), m.loaded = !1, m.noData = !0, m.showComputeUnitsHelp = function() {
1138611428
k.showComputeUnitsHelp();
1138711429
}, j.getMetricsURL().then(function(a) {

0 commit comments

Comments
 (0)