diff --git a/cmd/influxd/launcher/launcher.go b/cmd/influxd/launcher/launcher.go index 21ae9a9c21..995ef8b3ae 100644 --- a/cmd/influxd/launcher/launcher.go +++ b/cmd/influxd/launcher/launcher.go @@ -456,6 +456,7 @@ func (m *Launcher) run(ctx context.Context) (err error) { secretSvc platform.SecretService = m.kvService lookupSvc platform.LookupService = m.kvService notificationRuleSvc platform.NotificationRuleStore = m.kvService + checkSvc platform.CheckService = m.kvService ) switch m.secretStore { @@ -627,6 +628,7 @@ func (m *Launcher) run(ctx context.Context) (err error) { TaskService: taskSvc, TelegrafService: telegrafSvc, NotificationRuleStore: notificationRuleSvc, + CheckService: checkSvc, ScraperTargetStoreService: scraperTargetSvc, ChronografService: chronografSvc, SecretService: secretSvc,