Skip to content

Commit a0ae698

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

File tree

2 files changed

+74
-1
lines changed

2 files changed

+74
-1
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
});

0 commit comments

Comments
 (0)