Files
nomad/client/serviceregistration/nsd/statuses.go
2023-08-10 17:27:15 -05:00

29 lines
716 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package nsd
import (
"github.com/hashicorp/nomad/client/serviceregistration/checks/checkstore"
)
func NewStatusGetter(shim checkstore.Shim) *StatusGetter {
return &StatusGetter{
shim: shim,
}
}
// StatusGetter is the implementation of CheckStatusGetter for Nomad services.
type StatusGetter struct {
// Unlike consul we can simply query for check status information from our
// own Client state store.
shim checkstore.Shim
}
// Get returns current status of every live check in the Nomad service provider.
//
// returns checkID => checkStatus
func (s StatusGetter) Get() (map[string]string, error) {
return s.shim.Snapshot(), nil
}