You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifr.syncK8sSecretDuration, err=meter.Float64Histogram("k8s_secret_duration_sec", metric.WithDescription("Distribution of how long it took to sync k8s secret")); err!=nil {
79
86
returnnil, err
80
87
}
88
+
ifr.rotationReconcileTotal, err=meter.Int64Counter("rotation_reconcile", metric.WithDescription("Total number of rotation reconciles")); err!=nil {
89
+
returnnil, err
90
+
}
91
+
ifr.rotationReconcileErrorTotal, err=meter.Int64Counter("rotation_reconcile_error", metric.WithDescription("Total number of rotation reconciles with error")); err!=nil {
92
+
returnnil, err
93
+
}
94
+
ifr.rotationReconcileDuration, err=meter.Float64Histogram("rotation_reconcile_duration_sec", metric.WithDescription("Distribution of how long it took to rotate secrets-store content for pods")); err!=nil {
0 commit comments