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 :{
@@ -2931,15 +2932,15 @@ return a ? a + "/metrics/stats/query" :a;
2931
2932
}
2932
2933
function j ( a ) {
2933
2934
return f ( ) . then ( function ( b ) {
2934
- var c = b + n ;
2935
- return URI . expand ( c , {
2935
+ var c ;
2936
+ return c = "counter" === a . type ? b + o : b + n , URI . expand ( c , {
2936
2937
podUID :a . pod . metadata . uid ,
2937
2938
containerName :a . containerName ,
2938
2939
metric :a . metric
2939
2940
} ) . toString ( ) ;
2940
2941
} ) ;
2941
2942
}
2942
- var k , l , m , n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data" , o = function ( a ) {
2943
+ var k , l , m , n = "/gauges/{containerName}%2F{podUID}%2F{metric}/data" , o = "/counters/{containerName}%2F{podUID}%2F{metric}/data" , p = function ( a ) {
2943
2944
return f ( ) . then ( function ( c ) {
2944
2945
return ! ! c && ( ! a || ( ! ! l || ! m && b . get ( c ) . then ( function ( ) {
2945
2946
return l = ! 0 , ! 0 ;
@@ -2950,13 +2951,13 @@ response:a
2950
2951
} ) , ! 1 ;
2951
2952
} ) ) ) ;
2952
2953
} ) ;
2953
- } , p = function ( a ) {
2954
+ } , q = function ( a ) {
2954
2955
var b = a . split ( "/" ) ;
2955
2956
return {
2956
2957
podUID :b [ 1 ] ,
2957
2958
descriptor :b [ 2 ] + "/" + b [ 3 ]
2958
2959
} ;
2959
- } , q = function ( a , c , d ) {
2960
+ } , r = function ( a , c , d ) {
2960
2961
var e = _ . indexBy ( d . pods , "metadata.uid" ) ;
2961
2962
return b . post ( a , c , {
2962
2963
auth :{ } ,
@@ -2967,40 +2968,65 @@ Accept:"application/json",
2967
2968
}
2968
2969
} ) . then ( function ( a ) {
2969
2970
var b = { } , c = function ( a , c ) {
2970
- var d = p ( c ) , f = _ . get ( e , [ d . podUID , "metadata" , "name" ] ) , h = g ( a ) ;
2971
+ var d = q ( c ) , f = _ . get ( e , [ d . podUID , "metadata" , "name" ] ) , h = g ( a ) ;
2971
2972
_ . set ( b , [ d . descriptor , f ] , h ) ;
2972
2973
} ;
2973
2974
return _ . each ( a . data . counter , c ) , _ . each ( a . data . gauge , c ) , b ;
2974
2975
} ) ;
2975
- } , 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 ) {
2976
+ } , 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 ) {
2976
2977
return i ( ) . then ( function ( b ) {
2977
2978
var d = {
2978
2979
bucketDuration :a . bucketDuration ,
2979
2980
start :a . start
2980
2981
} ;
2981
2982
a . end && ( d . end = a . end ) ;
2982
2983
var e = [ ] , f = h ( _ . map ( a . pods , "metadata.uid" ) ) , g = _ . assign ( {
2983
- tags :s ( {
2984
+ tags :t ( {
2984
2985
uid :f ,
2985
2986
containerName :a . containerName
2986
2987
} )
2987
2988
} , d ) ;
2988
- e . push ( q ( b , g , a ) ) ;
2989
+ e . push ( r ( b , g , a ) ) ;
2989
2990
var i = _ . assign ( {
2990
- tags :r ( {
2991
+ tags :s ( {
2991
2992
uid :f
2992
2993
} )
2993
2994
} , d ) ;
2994
- return e . push ( q ( b , i , a ) ) , c . all ( e ) . then ( function ( a ) {
2995
+ return e . push ( r ( b , i , a ) ) , c . all ( e ) . then ( function ( a ) {
2995
2996
var b = { } ;
2996
2997
return _ . each ( a , function ( a ) {
2997
2998
_ . assign ( b , a ) ;
2998
2999
} ) , b ;
2999
3000
} ) ;
3000
3001
} ) ;
3002
+ } , v = function ( a ) {
3003
+ var c = a . metadata . namespace , d = a . metadata . uid ;
3004
+ return f ( ) . then ( function ( a ) {
3005
+ if ( ! a ) return null ;
3006
+ var e = a + "/metrics" , f = {
3007
+ tags :"custom_metric:true,pod_id:" + d
3001
3008
} ;
3009
+ return b . get ( e , {
3010
+ auth :{ } ,
3011
+ headers :{
3012
+ Accept :"application/json" ,
3013
+ "Hawkular-Tenant" :c
3014
+ } ,
3015
+ params :f
3016
+ } ) . then ( function ( a ) {
3017
+ return _ . map ( a . data , function ( a ) {
3002
3018
return {
3003
- isAvailable :o ,
3019
+ name :a . tags . metric_name ,
3020
+ unit :a . tags . units ,
3021
+ description :a . tags . description ,
3022
+ type :a . type
3023
+ } ;
3024
+ } ) ;
3025
+ } ) ;
3026
+ } ) ;
3027
+ } ;
3028
+ return {
3029
+ isAvailable :p ,
3004
3030
getMetricsURL :f ,
3005
3031
get :function ( a ) {
3006
3032
return j ( a ) . then ( function ( c ) {
@@ -3046,7 +3072,8 @@ usage:_.head(g(b.data))
3046
3072
} ) ;
3047
3073
} ) ;
3048
3074
} ,
3049
- getPodMetrics :t
3075
+ getPodMetrics :u ,
3076
+ getCustomMetrics :v
3050
3077
} ;
3051
3078
} ] ) , angular . module ( "openshiftConsole" ) . factory ( "MetricsCharts" , [ "$timeout" , "ConversionService" , function ( a , b ) {
3052
3079
var c = function ( a , c ) {
@@ -11296,6 +11323,7 @@ return Math.floor(r() / F) + "ms";
11296
11323
function t ( a , b , c ) {
11297
11324
var d , e = {
11298
11325
metric :b . id ,
11326
+ type :b . type ,
11299
11327
bucketDuration :s ( )
11300
11328
} ;
11301
11329
return b . data && b . data . length ? ( d = _ . last ( b . data ) , e . start = d . end ) :e . start = c , m . pod ? _ . assign ( e , {
@@ -11414,6 +11442,22 @@ id:"network/rx_rate",
11414
11442
label :"Received" ,
11415
11443
data :[ ]
11416
11444
} ]
11445
+ } ) , window . OPENSHIFT_CONSTANTS . DISABLE_CUSTOM_METRICS || j . getCustomMetrics ( m . pod ) . then ( function ( a ) {
11446
+ angular . forEach ( a , function ( a ) {
11447
+ var b = a . description || a . name , c = a . unit || "" ;
11448
+ m . metrics . push ( {
11449
+ label :b ,
11450
+ units :c ,
11451
+ chartPrefix :"custom-" + _ . uniqueId ( "custom-metric-" ) ,
11452
+ chartType :"spline" ,
11453
+ datasets :[ {
11454
+ id :"custom/" + a . name ,
11455
+ label :b ,
11456
+ type :a . type ,
11457
+ data :[ ]
11458
+ } ]
11459
+ } ) ;
11460
+ } ) , z ( ) ;
11417
11461
} ) , m . loaded = ! 1 , m . noData = ! 0 , m . showComputeUnitsHelp = function ( ) {
11418
11462
k . showComputeUnitsHelp ( ) ;
11419
11463
} , j . getMetricsURL ( ) . then ( function ( a ) {
0 commit comments