-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
stats.go
32 lines (25 loc) · 975 Bytes
/
stats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-present Datadog, Inc.
package orchestrator
import (
"path"
)
var (
// statsKey is the cache key for statistics related to orchestrator checks.
statsKey = "orchestrator/last/run/stats"
)
// CheckStats holds statistics for the DCA status command regarding the last run check. Information is saved in the KubernetesResourceCache.
type CheckStats struct {
// CacheHits contains the number of cache hits for a NodeType per run.
CacheHits int
// CacheMiss contains the number of cache miss/send Data for a NodeType per run.
CacheMiss int
NodeType
}
// BuildStatsKey builds a orchestrator statsKey prefixed key.
func BuildStatsKey(nodeType NodeType) string {
keys := append([]string{statsKey}, nodeType.String())
return path.Join(keys...)
}