type Healthz interface {
IsReady() bool AddTarget() Target AddTargetSet(int) []Target}
Healthz implements a health check mechanism.
Tagets can be added to the health check, and the health check will return
true when all targets are ready.
Returns not ready if no targets are registered.