cert-manager/pkg/metrics/certificates.go
Danny Kulchinsky 9074f5a081 refactor RemoveCertificate to use DeletePartialMatch
Signed-off-by: Danny Kulchinsky <dkulchinsky@fastly.com>
2022-09-28 10:24:30 -04:00

123 lines
3.9 KiB
Go

/*
Copyright 2020 The cert-manager Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package metrics
import (
"context"
"github.com/prometheus/client_golang/prometheus"
"k8s.io/client-go/tools/cache"
cmapi "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
cmmeta "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
logf "github.com/cert-manager/cert-manager/pkg/logs"
)
// UpdateCertificate will update the given Certificate's metrics for its expiry, renewal, and status
// condition.
func (m *Metrics) UpdateCertificate(ctx context.Context, crt *cmapi.Certificate) {
key, err := cache.MetaNamespaceKeyFunc(crt)
if err != nil {
log := logf.WithRelatedResource(m.log, crt)
log.Error(err, "failed to get key from certificate object")
return
}
m.updateCertificateStatus(key, crt)
m.updateCertificateExpiry(ctx, key, crt)
m.updateCertificateRenewalTime(crt)
}
// updateCertificateExpiry updates the expiry time of a certificate
func (m *Metrics) updateCertificateExpiry(ctx context.Context, key string, crt *cmapi.Certificate) {
expiryTime := 0.0
if crt.Status.NotAfter != nil {
expiryTime = float64(crt.Status.NotAfter.Unix())
}
m.certificateExpiryTimeSeconds.With(prometheus.Labels{
"name": crt.Name,
"namespace": crt.Namespace,
"issuer_name": crt.Spec.IssuerRef.Name,
"issuer_kind": crt.Spec.IssuerRef.Kind,
"issuer_group": crt.Spec.IssuerRef.Group}).Set(expiryTime)
}
// updateCertificateRenewalTime updates the renew before duration of a certificate
func (m *Metrics) updateCertificateRenewalTime(crt *cmapi.Certificate) {
renewalTime := 0.0
if crt.Status.RenewalTime != nil {
renewalTime = float64(crt.Status.RenewalTime.Unix())
}
m.certificateRenewalTimeSeconds.With(prometheus.Labels{
"name": crt.Name,
"namespace": crt.Namespace,
"issuer_name": crt.Spec.IssuerRef.Name,
"issuer_kind": crt.Spec.IssuerRef.Kind,
"issuer_group": crt.Spec.IssuerRef.Group}).Set(renewalTime)
}
// updateCertificateStatus will update the metric for that Certificate
func (m *Metrics) updateCertificateStatus(key string, crt *cmapi.Certificate) {
for _, c := range crt.Status.Conditions {
if c.Type == cmapi.CertificateConditionReady {
m.updateCertificateReadyStatus(crt, c.Status)
return
}
}
// If no status condition set yet, set to Unknown
m.updateCertificateReadyStatus(crt, cmmeta.ConditionUnknown)
}
func (m *Metrics) updateCertificateReadyStatus(crt *cmapi.Certificate, current cmmeta.ConditionStatus) {
for _, condition := range readyConditionStatuses {
value := 0.0
if current == condition {
value = 1.0
}
m.certificateReadyStatus.With(prometheus.Labels{
"name": crt.Name,
"namespace": crt.Namespace,
"condition": string(condition),
"issuer_name": crt.Spec.IssuerRef.Name,
"issuer_kind": crt.Spec.IssuerRef.Kind,
"issuer_group": crt.Spec.IssuerRef.Group,
}).Set(value)
}
}
// RemoveCertificate will delete the Certificate metrics from continuing to be
// exposed.
func (m *Metrics) RemoveCertificate(key string) {
namespace, name, err := cache.SplitMetaNamespaceKey(key)
if err != nil {
m.log.Error(err, "failed to get namespace and name from key")
return
}
m.certificateExpiryTimeSeconds.DeletePartialMatch(prometheus.Labels{"name": name, "namespace": namespace})
m.certificateRenewalTimeSeconds.DeletePartialMatch(prometheus.Labels{"name": name, "namespace": namespace})
m.certificateReadyStatus.DeletePartialMatch(prometheus.Labels{"name": name, "namespace": namespace})
}