forked from TrueCloudLab/frostfs-node
dcfe9a6504
Implement `ControlServiceServer` on `Server` type. The `Server` requires all requests to be signed with keys from the so-called whitelist. To obtain health status, it uses the abstraction in the form of `HealthChecker` interface. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
13 lines
457 B
Go
13 lines
457 B
Go
package control
|
|
|
|
import control "github.com/nspcc-dev/neofs-node/pkg/services/control/ir"
|
|
|
|
// HealthChecker is component interface for calculating
|
|
// the current health status of a node.
|
|
type HealthChecker interface {
|
|
// Must calculate and return current health status of the IR application.
|
|
//
|
|
// If status can not be calculated for any reason,
|
|
// control.HealthStatus_HEALTH_STATUS_UNDEFINED should be returned.
|
|
HealthStatus() control.HealthStatus
|
|
}
|