55
55
} ,
56
56
DEFAULT_HPA_CPU_TARGET_PERCENT :80 ,
57
57
DISABLE_OVERVIEW_METRICS :! 1 ,
58
+ DISABLE_CUSTOM_METRICS :! 1 ,
58
59
DISABLE_WILDCARD_ROUTES :! 0 ,
59
60
AVAILABLE_KINDS_BLACKLIST :[ "Binding" , "Ingress" , "DeploymentConfigRollback" ] ,
60
61
ENABLE_TECH_PREVIEW_FEATURE :{
@@ -2929,15 +2930,15 @@ return a ? a + "/metrics/stats/query" :a;
2929
2930
}
2930
2931
function j ( a ) {
2931
2932
return f ( ) . then ( function ( b ) {
2932
- var c = b + n ;
2933
- return URI . expand ( c , {
2933
+ var c ;
2934
+ return c = "counter" === a . type ? b + o : b + n , URI . expand ( c , {
2934
2935
podUID :a . pod . metadata . uid ,
2935
2936
containerName :a . containerName ,
2936
2937
metric :a . metric
2937
2938
} ) . toString ( ) ;
2938
2939
} ) ;
2939
2940
}
2940
- var k , l , m , n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data" , o = function ( a ) {
2941
+ var k , l , m , n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data" , o = "/counters/{containerName}%2F{podUID}%2F{metric}/data" , p = function ( a ) {
2941
2942
return f ( ) . then ( function ( c ) {
2942
2943
return ! ! c && ( ! a || ( ! ! l || ! m && b . get ( c ) . then ( function ( ) {
2943
2944
return l = ! 0 , ! 0 ;
@@ -2948,13 +2949,13 @@ response:a
2948
2949
} ) , ! 1 ;
2949
2950
} ) ) ) ;
2950
2951
} ) ;
2951
- } , p = function ( a ) {
2952
+ } , q = function ( a ) {
2952
2953
var b = a . split ( "/" ) ;
2953
2954
return {
2954
2955
podUID :b [ 1 ] ,
2955
2956
descriptor :b [ 2 ] + "/" + b [ 3 ]
2956
2957
} ;
2957
- } , q = function ( a , c , d ) {
2958
+ } , r = function ( a , c , d ) {
2958
2959
var e = _ . indexBy ( d . pods , "metadata.uid" ) ;
2959
2960
return b . post ( a , c , {
2960
2961
auth :{ } ,
@@ -2965,40 +2966,65 @@ Accept:"application/json",
2965
2966
}
2966
2967
} ) . then ( function ( a ) {
2967
2968
var b = { } , c = function ( a , c ) {
2968
- var d = p ( c ) , f = _ . get ( e , [ d . podUID , "metadata" , "name" ] ) , h = g ( a ) ;
2969
+ var d = q ( c ) , f = _ . get ( e , [ d . podUID , "metadata" , "name" ] ) , h = g ( a ) ;
2969
2970
_ . set ( b , [ d . descriptor , f ] , h ) ;
2970
2971
} ;
2971
2972
return _ . each ( a . data . counter , c ) , _ . each ( a . data . gauge , c ) , b ;
2972
2973
} ) ;
2973
- } , 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 ) {
2974
+ } , s = _ . template ( "descriptor_name:network/tx_rate|network/rx_rate,type:pod,pod_id:<%= uid %>" ) , t = _ . template ( "descriptor_name:memory/usage|cpu/usage_rate,type:pod_container,pod_id:<%= uid %>,container_name:<%= containerName %>" ) , u = function ( a ) {
2974
2975
return i ( ) . then ( function ( b ) {
2975
2976
var d = {
2976
2977
bucketDuration :a . bucketDuration ,
2977
2978
start :a . start
2978
2979
} ;
2979
2980
a . end && ( d . end = a . end ) ;
2980
2981
var e = [ ] , f = h ( _ . map ( a . pods , "metadata.uid" ) ) , g = _ . assign ( {
2981
- tags :s ( {
2982
+ tags :t ( {
2982
2983
uid :f ,
2983
2984
containerName :a . containerName
2984
2985
} )
2985
2986
} , d ) ;
2986
- e . push ( q ( b , g , a ) ) ;
2987
+ e . push ( r ( b , g , a ) ) ;
2987
2988
var i = _ . assign ( {
2988
- tags :r ( {
2989
+ tags :s ( {
2989
2990
uid :f
2990
2991
} )
2991
2992
} , d ) ;
2992
- return e . push ( q ( b , i , a ) ) , c . all ( e ) . then ( function ( a ) {
2993
+ return e . push ( r ( b , i , a ) ) , c . all ( e ) . then ( function ( a ) {
2993
2994
var b = { } ;
2994
2995
return _ . each ( a , function ( a ) {
2995
2996
_ . assign ( b , a ) ;
2996
2997
} ) , b ;
2997
2998
} ) ;
2998
2999
} ) ;
3000
+ } , v = function ( a ) {
3001
+ var c = a . metadata . namespace , d = a . metadata . uid ;
3002
+ return f ( ) . then ( function ( a ) {
3003
+ if ( ! a ) return null ;
3004
+ var e = a + "/metrics" , f = {
3005
+ tags :"custom_metric:true,pod_id:" + d
2999
3006
} ;
3007
+ return b . get ( e , {
3008
+ auth :{ } ,
3009
+ headers :{
3010
+ Accept :"application/json" ,
3011
+ "Hawkular-Tenant" :c
3012
+ } ,
3013
+ params :f
3014
+ } ) . then ( function ( a ) {
3015
+ return _ . map ( a . data , function ( a ) {
3000
3016
return {
3001
- isAvailable :o ,
3017
+ name :a . tags . metric_name ,
3018
+ unit :a . tags . units ,
3019
+ description :a . tags . description ,
3020
+ type :a . type
3021
+ } ;
3022
+ } ) ;
3023
+ } ) ;
3024
+ } ) ;
3025
+ } ;
3026
+ return {
3027
+ isAvailable :p ,
3002
3028
getMetricsURL :f ,
3003
3029
get :function ( a ) {
3004
3030
return j ( a ) . then ( function ( c ) {
@@ -3044,7 +3070,8 @@ usage:_.head(g(b.data))
3044
3070
} ) ;
3045
3071
} ) ;
3046
3072
} ,
3047
- getPodMetrics :t
3073
+ getPodMetrics :u ,
3074
+ getCustomMetrics :v
3048
3075
} ;
3049
3076
} ] ) , angular . module ( "openshiftConsole" ) . factory ( "MetricsCharts" , [ "$timeout" , "ConversionService" , function ( a , b ) {
3050
3077
var c = function ( a , c ) {
@@ -11264,6 +11291,7 @@ return Math.floor(r() / F) + "ms";
11264
11291
function t ( a , b , c ) {
11265
11292
var d , e = {
11266
11293
metric :b . id ,
11294
+ type :b . type ,
11267
11295
bucketDuration :s ( )
11268
11296
} ;
11269
11297
return b . data && b . data . length ? ( d = _ . last ( b . data ) , e . start = d . end ) :e . start = c , m . pod ? _ . assign ( e , {
@@ -11382,6 +11410,22 @@ id:"network/rx_rate",
11382
11410
label :"Received" ,
11383
11411
data :[ ]
11384
11412
} ]
11413
+ } ) , window . OPENSHIFT_CONSTANTS . DISABLE_CUSTOM_METRICS || j . getCustomMetrics ( m . pod ) . then ( function ( a ) {
11414
+ angular . forEach ( a , function ( a ) {
11415
+ var b = a . description || a . name , c = a . unit || "" ;
11416
+ m . metrics . push ( {
11417
+ label :b ,
11418
+ units :c ,
11419
+ chartPrefix :"custom-" + _ . uniqueId ( "custom-metric-" ) ,
11420
+ chartType :"spline" ,
11421
+ datasets :[ {
11422
+ id :"custom/" + a . name ,
11423
+ label :b ,
11424
+ type :a . type ,
11425
+ data :[ ]
11426
+ } ]
11427
+ } ) ;
11428
+ } ) , z ( ) ;
11385
11429
} ) , m . loaded = ! 1 , m . noData = ! 0 , m . showComputeUnitsHelp = function ( ) {
11386
11430
k . showComputeUnitsHelp ( ) ;
11387
11431
} , j . getMetricsURL ( ) . then ( function ( a ) {
0 commit comments