diff --git a/internal/store/alert_configuration.go b/internal/store/alert_configuration.go index dd599e66f9..6809f5bd8b 100644 --- a/internal/store/alert_configuration.go +++ b/internal/store/alert_configuration.go @@ -94,6 +94,9 @@ func (s *Store) MatcherFields() ([]string, error) { case config.CloudService: result, _, err := s.client.(*atlas.Client).AlertConfigurations.ListMatcherFields(context.Background()) return result, err + case config.OpsManagerService, config.CloudManagerService: + result, _, err := s.client.(*om.Client).AlertConfigurations.ListMatcherFields(context.Background()) + return result, err default: return nil, fmt.Errorf("unsupported service: %s", s.service) }