type Backend interface {
// Update updates status for the cluster. UpdateStatus(status *pb.SystemStatus) error// Close resets the backend and releases any resources. Close() error
}
Backend is an interface that allows to persist health status results
after a monitoring test run.