diff --git a/app/observatory/burst/healthping.go b/app/observatory/burst/healthping.go index d57f51e8..b5cc021f 100644 --- a/app/observatory/burst/healthping.go +++ b/app/observatory/burst/healthping.go @@ -96,6 +96,16 @@ func (h *HealthPing) StartScheduler(selector func() ([]string, error)) { ticker := time.NewTicker(interval) h.ticker = ticker + // init run to get a fast check result + go func() { + tags, err := selector() + if err != nil { + errors.LogWarning(h.ctx, "error select outbounds for initial health check: ", err) + return + } + h.Check(tags) + }() + go func() { for { go func() {