FeatureSelectionConfig

feature selection configuration for the FeatureMonitor.

Fields
featureConfigs[] object (FeatureConfig)

Optional. A list of features to be monitored and each feature's drift threshold.

JSON representation
{
  "featureConfigs": [
    {
      object (FeatureConfig)
    }
  ]
}

FeatureConfig

feature configuration.

Fields
featureId string

Required. The id of the feature resource. Final component of the feature's resource name.

driftThreshold number

Optional. Drift threshold. If calculated difference with baseline data larger than threshold, it will be considered as the feature has drift. If not present, the threshold will be default to 0.3.

JSON representation
{
  "featureId": string,
  "driftThreshold": number
}