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 {
1320
1320
}
1321
1321
1322
1322
func createPodStatusContainerReadyTimeFamilyGenerator () generator.FamilyGenerator {
1323
- return * generator .NewFamilyGenerator (
1323
+ return * generator .NewFamilyGeneratorWithStability (
1324
1324
"kube_pod_status_container_ready_time" ,
1325
1325
"Readiness achieved time in unix timestamp for a pod containers." ,
1326
1326
metric .Gauge ,
1327
+ basemetrics .ALPHA ,
1327
1328
"" ,
1328
1329
wrapPodFunc (func (p * v1.Pod ) * metric.Family {
1329
1330
ms := []* metric.Metric {}
@@ -1346,10 +1347,11 @@ func createPodStatusContainerReadyTimeFamilyGenerator() generator.FamilyGenerato
1346
1347
}
1347
1348
1348
1349
func createPodStatusReadyTimeFamilyGenerator () generator.FamilyGenerator {
1349
- return * generator .NewFamilyGenerator (
1350
+ return * generator .NewFamilyGeneratorWithStability (
1350
1351
"kube_pod_status_ready_time" ,
1351
1352
"Readiness achieved time in unix timestamp for a pod." ,
1352
1353
metric .Gauge ,
1354
+ basemetrics .ALPHA ,
1353
1355
"" ,
1354
1356
wrapPodFunc (func (p * v1.Pod ) * metric.Family {
1355
1357
ms := []* metric.Metric {}
You can’t perform that action at this time.
0 commit comments