File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1320,10 +1320,11 @@ func createPodStatusPhaseFamilyGenerator() generator.FamilyGenerator {
13201320}
13211321
13221322func createPodStatusContainerReadyTimeFamilyGenerator () generator.FamilyGenerator {
1323- return * generator .NewFamilyGenerator (
1323+ return * generator .NewFamilyGeneratorWithStability (
13241324 "kube_pod_status_container_ready_time" ,
13251325 "Readiness achieved time in unix timestamp for a pod containers." ,
13261326 metric .Gauge ,
1327+ basemetrics .ALPHA ,
13271328 "" ,
13281329 wrapPodFunc (func (p * v1.Pod ) * metric.Family {
13291330 ms := []* metric.Metric {}
@@ -1346,10 +1347,11 @@ func createPodStatusContainerReadyTimeFamilyGenerator() generator.FamilyGenerato
13461347}
13471348
13481349func createPodStatusReadyTimeFamilyGenerator () generator.FamilyGenerator {
1349- return * generator .NewFamilyGenerator (
1350+ return * generator .NewFamilyGeneratorWithStability (
13501351 "kube_pod_status_ready_time" ,
13511352 "Readiness achieved time in unix timestamp for a pod." ,
13521353 metric .Gauge ,
1354+ basemetrics .ALPHA ,
13531355 "" ,
13541356 wrapPodFunc (func (p * v1.Pod ) * metric.Family {
13551357 ms := []* metric.Metric {}
You can’t perform that action at this time.
0 commit comments