Documentation
¶
Index ¶
- type BuildStoresFunc
- type Builder
- func (b *Builder) Build() []metricsstore.MetricsWriter
- func (b *Builder) DefaultGenerateStoresFunc() BuildStoresFunc
- func (b *Builder) WithAllowAnnotations(annotations map[string][]string)
- func (b *Builder) WithAllowDenyList(l ksmtypes.AllowDenyLister)
- func (b *Builder) WithAllowLabels(labels map[string][]string)
- func (b *Builder) WithContext(ctx context.Context)
- func (b *Builder) WithCtrlClient(c client.WithWatch)
- func (b *Builder) WithEnabledResources(r []string) error
- func (b *Builder) WithGenerateStoresFunc(f BuildStoresFunc, u bool)
- func (b *Builder) WithMetrics(r prometheus.Registerer)
- func (b *Builder) WithNamespaces(n options.NamespaceList, nsFilter string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildStoresFunc ¶
type BuildStoresFunc func(metricFamilies []generator.FamilyGenerator, expectedType interface{}, listWatchFunc func(client client.WithWatch, ns, fieldSelector string) cache.ListerWatcher, useAPIServerCache bool, ) []cache.Store
BuildStoresFunc function signature that is used to return a list of cache.Store using a WithWatch client
type Builder ¶
type Builder struct {
// contains filtered or unexported fields
}
Builder helps to build store. It follows the builder pattern (https://en.wikipedia.org/wiki/Builder_pattern).
func (*Builder) Build ¶
func (b *Builder) Build() []metricsstore.MetricsWriter
Build initializes and registers all enabled stores. It returns metrics writers which can be used to write out metrics from the stores.
func (*Builder) DefaultGenerateStoresFunc ¶
func (b *Builder) DefaultGenerateStoresFunc() BuildStoresFunc
DefaultGenerateStoresFunc returns default buildStores function
func (*Builder) WithAllowAnnotations ¶
WithAllowAnnotations configures which annotations can be returned for metrics
func (*Builder) WithAllowDenyList ¶
func (b *Builder) WithAllowDenyList(l ksmtypes.AllowDenyLister)
WithAllowDenyList configures the allow or denylisted metric to be exposed by the store build by the Builder.
func (*Builder) WithAllowLabels ¶
WithAllowLabels configures which labels can be returned for metrics
func (*Builder) WithContext ¶
WithContext sets the ctx property of a Builder.
func (*Builder) WithCtrlClient ¶
WithCtrlClient sets the controller-runtime client with watch as property of a Builder.
func (*Builder) WithEnabledResources ¶
WithEnabledResources sets the enabledResources property of a Builder.
func (*Builder) WithGenerateStoresFunc ¶
func (b *Builder) WithGenerateStoresFunc(f BuildStoresFunc, u bool)
WithGenerateStoresFunc configures a custom generate store function
func (*Builder) WithMetrics ¶
func (b *Builder) WithMetrics(r prometheus.Registerer)
WithMetrics sets the metrics property of a Builder.
func (*Builder) WithNamespaces ¶
func (b *Builder) WithNamespaces(n options.NamespaceList, nsFilter string)
WithNamespaces sets the namespaces property of a Builder.