Documentation ¶
Overview ¶
Package metrics contains global structures related to metrics collection cert-manager exposes the following metrics: certificate_expiration_timestamp_seconds{name, namespace} certificate_ready_status{name, namespace, condition} acme_client_request_count{"scheme", "host", "path", "method", "status"} acme_client_request_duration_seconds{"scheme", "host", "path", "method", "status"} controller_sync_call_count{"controller"}
Package metrics contains global structures related to metrics collection cert-manager exposes the following metrics: certificate_expiration_timestamp_seconds{name, namespace} certificate_ready_status{name, namespace, condition} acme_client_request_count{"scheme", "host", "path", "method", "status"} acme_client_request_duration_seconds{"scheme", "host", "path", "method", "status"} controller_sync_call_count{"controller"}
Package metrics contains global structures related to metrics collection cert-manager exposes the following metrics: certificate_expiration_timestamp_seconds{name, namespace} certificate_ready_status{name, namespace, condition} acme_client_request_count{"scheme", "host", "path", "method", "status"} acme_client_request_duration_seconds{"scheme", "host", "path", "method", "status"} controller_sync_call_count{"controller"}
Index ¶
- type Metrics
- func (m *Metrics) IncrementACMERequestCount(labels ...string)
- func (m *Metrics) IncrementSyncCallCount(controllerName string)
- func (m *Metrics) ObserveACMERequestDuration(duration time.Duration, labels ...string)
- func (m *Metrics) RemoveCertificate(key string)
- func (m *Metrics) Shutdown(server *http.Server)
- func (m *Metrics) Start(listenAddress string) (*http.Server, error)
- func (m *Metrics) UpdateCertificate(ctx context.Context, crt *cmapi.Certificate)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Metrics ¶
type Metrics struct {
// contains filtered or unexported fields
}
Metrics is designed to be a shared object for updating the metrics exposed by cert-manager
func (*Metrics) IncrementACMERequestCount ¶ added in v0.16.0
IncrementACMERequestCount increases the acme client request counter.
func (*Metrics) IncrementSyncCallCount ¶ added in v0.9.0
IncrementSyncCallCount will increase the sync counter for that controller.
func (*Metrics) ObserveACMERequestDuration ¶ added in v0.16.0
ObserveACMERequestDuration increases bucket counters for that ACME client duration.
func (*Metrics) RemoveCertificate ¶ added in v0.16.0
RemoveCertificate will delete the Certificate metrics from continuing to be exposed.
func (*Metrics) UpdateCertificate ¶ added in v0.16.0
func (m *Metrics) UpdateCertificate(ctx context.Context, crt *cmapi.Certificate)
UpdateCertificate will update that Certificate metric with expiry and Ready condition.