Documentation ¶
Index ¶
- Variables
- func GetWatcherDeletedPodCacheHits() prometheus.Counter
- func GetWatcherErrors(watcherType Watcher, watcherError ErrorType) prometheus.Counter
- func GetWatcherEvents(watcherType Watcher) prometheus.Counter
- func InitMetrics()
- func RegisterMetrics(group metrics.Group)
- type ErrorType
- type Watcher
Constants ¶
This section is empty.
Variables ¶
View Source
var ( WatcherErrors = prometheus.NewCounterVec(prometheus.CounterOpts{ Namespace: consts.MetricsNamespace, Name: "watcher_errors_total", Help: "The total number of errors for a given watcher type.", ConstLabels: nil, }, []string{"watcher", "error"}) WatcherEvents = prometheus.NewCounterVec(prometheus.CounterOpts{ Namespace: consts.MetricsNamespace, Name: "watcher_events_total", Help: "The total number of events for a given watcher type.", ConstLabels: nil, }, []string{"watcher"}) WatcherDeletedPodCacheHits = prometheus.NewCounter(prometheus.CounterOpts{ Namespace: consts.MetricsNamespace, Name: "watcher_delete_pod_cache_hits", Help: "The total hits for pod information in the deleted pod cache.", ConstLabels: nil, }) )
Functions ¶
func GetWatcherDeletedPodCacheHits ¶ added in v1.2.1
func GetWatcherDeletedPodCacheHits() prometheus.Counter
func GetWatcherErrors ¶
func GetWatcherErrors(watcherType Watcher, watcherError ErrorType) prometheus.Counter
Get a new handle on an WatcherEvents metric for a watcher type
func GetWatcherEvents ¶
func GetWatcherEvents(watcherType Watcher) prometheus.Counter
Get a new handle on an WatcherEvents metric for a watcher type
func InitMetrics ¶ added in v0.11.0
func InitMetrics()
func RegisterMetrics ¶ added in v1.2.0
Types ¶
Click to show internal directories.
Click to hide internal directories.