package results
import "k8s.io/kubernetes/pkg/kubelet/prober/results"
Index ¶
Types ¶
type Manager ¶
type Manager interface {
// Get returns the cached result for the container with the given ID.
Get(kubecontainer.ContainerID) (Result, bool)
// Set sets the cached result for the container with the given ID.
// The pod is only included to be sent with the update.
Set(kubecontainer.ContainerID, Result, *v1.Pod)
// Remove clears the cached result for the container with the given ID.
Remove(kubecontainer.ContainerID)
// Updates creates a channel that receives an Update whenever its result changes (but not
// removed).
// NOTE: The current implementation only supports a single updates channel.
Updates() <-chan Update
}
Manager provides a probe results cache and channel of updates.
func NewManager ¶
func NewManager() Manager
NewManager creates and returns an empty results manager.
type Result ¶
type Result int
Result is the type for probe results.
const ( // Unknown is encoded as -1 (type Result) Unknown Result = iota - 1 // Success is encoded as 0 (type Result) Success // Failure is encoded as 1 (type Result) Failure )
func (Result) String ¶
func (Result) ToPrometheusType ¶
ToPrometheusType translates a Result to a form which is better understood by prometheus.
type Update ¶
type Update struct {
ContainerID kubecontainer.ContainerID
Result Result
PodUID types.UID
}
Update is an enum of the types of updates sent over the Updates channel.
Source Files ¶
results_manager.go
- Version
- v1.23.9
- Published
- Jul 13, 2022
- Platform
- linux/amd64
- Imports
- 4 packages
- Last checked
- 3 minutes ago –
Tools for package owners.