metrics

package
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 18, 2022 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ResourcesMetricsCollector

type ResourcesMetricsCollector struct {
	logr.Logger
	etc.Config
	client.Client
}

ResourcesMetricsCollector is a custom Prometheus collector that produces metrics on-demand from the trivy-operator custom resources. Since these resources are already cached by the Kubernetes API client shared with the operator, metrics scrapes should never actually hit the API server. All resource reads are served from cache, reducing API server load without consuming additional cluster resources. An alternative (more traditional) approach would be to maintain metrics in the internal Prometheus registry on resource reconcile. The collector approach was selected in order to avoid potentially stale metrics; i.e. the controller would have to reconcile all resources at least once for the metrics to be up-to-date, which could take some time in large clusters. Also deleting metrics from registry for obsolete/deleted resources is challenging without introducing finalizers, which we want to avoid for operational reasons.

For more advanced use-cases, and/or very large clusters, this internal collector can be disabled and replaced by https://github.com/giantswarm/starboard-exporter, which collects trivy metrics from a dedicated workload supporting sharding etc.

func (ResourcesMetricsCollector) Collect

func (c ResourcesMetricsCollector) Collect(metrics chan<- prometheus.Metric)

func (ResourcesMetricsCollector) Describe

func (c ResourcesMetricsCollector) Describe(descs chan<- *prometheus.Desc)

func (ResourcesMetricsCollector) NeedLeaderElection

func (c ResourcesMetricsCollector) NeedLeaderElection() bool

func (*ResourcesMetricsCollector) SetupWithManager

func (c *ResourcesMetricsCollector) SetupWithManager(mgr ctrl.Manager) error

func (ResourcesMetricsCollector) Start

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL