diff --git a/app/observatory/burst/burstobserver.go b/app/observatory/burst/burstobserver.go index 85d38ace9..f9364eb45 100644 --- a/app/observatory/burst/burstobserver.go +++ b/app/observatory/burst/burstobserver.go @@ -91,10 +91,12 @@ func New(ctx context.Context, config *Config) (*Observer, error) { if err != nil { return nil, newError("Cannot get depended features").Base(err) } + hp := NewHealthPing(ctx, config.PingConfig) return &Observer{ config: config, ctx: ctx, ohm: outboundManager, + hp: hp, }, nil }