diff --git a/pkg/remoteconfig/updater.go b/pkg/remoteconfig/updater.go index bca9c5e92d..767022b4d8 100644 --- a/pkg/remoteconfig/updater.go +++ b/pkg/remoteconfig/updater.go @@ -186,9 +186,13 @@ func (r *RemoteConfigUpdater) Start(apiKey string, site string, clusterName stri } r.rcService = rcService + updaterTags := []string{"updater_type:datadog-operator"} + if r.serviceConf.clusterName != "" { + updaterTags = append(updaterTags, "cluster_name:"+r.serviceConf.clusterName) + } rcClient, err := client.NewClient( rcService, - client.WithUpdater(), + client.WithUpdater(updaterTags...), client.WithProducts(state.ProductAgentConfig, state.ProductOrchestratorK8sCRDs), client.WithDirectorRootOverride(r.serviceConf.cfg.GetString("site"), r.serviceConf.cfg.GetString("remote_configuration.director_root")), client.WithPollInterval(pollInterval),