@@ -169,6 +169,46 @@ angular.module("openshiftConsole")
169
169
} ) ;
170
170
} ;
171
171
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
+
172
212
return {
173
213
// Check if the metrics service is available. The service is considered
174
214
// available if a metrics URL is set. Returns a promise resolved with a
@@ -255,6 +295,7 @@ angular.module("openshiftConsole")
255
295
// end: end time in millis (optional)
256
296
//
257
297
// Returns a promise resolved with the metrics data.
258
- getPodMetrics : getPodMetrics
298
+ getPodMetrics : getPodMetrics ,
299
+ getCustomMetrics : getCustomMetrics ,
259
300
} ;
260
301
} ) ;
0 commit comments