Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Configuration of the Featurestore's Snapshot Analysis Based Monitoring. This type of analysis generates statistics for each Feature based on a snapshot of the latest feature value of each entities every monitoring_interval.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis

Returns a new instance of GoogleCloudAiplatformV1FeaturestoreMonitoringConfigSnapshotAnalysis.



9227
9228
9229
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9227

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disabledBoolean Also known as: disabled?

The monitoring schedule for snapshot analysis. For EntityType-level config: unset / disabled = true indicates disabled by default for Features under it; otherwise by default enable snapshot analysis monitoring with monitoring_interval for Features under it. Feature-level config: disabled = true indicates disabled regardless of the EntityType-level config; unset monitoring_interval indicates going with EntityType-level config; otherwise run snapshot analysis monitoring with monitoring_interval regardless of the EntityType-level config. Explicitly Disable the snapshot analysis based monitoring. Corresponds to the JSON property disabled

Returns:

  • (Boolean)


9212
9213
9214
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9212

def disabled
  @disabled
end

#monitoring_interval_daysFixnum

Configuration of the snapshot analysis based monitoring pipeline running interval. The value indicates number of days. Corresponds to the JSON property monitoringIntervalDays

Returns:

  • (Fixnum)


9219
9220
9221
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9219

def monitoring_interval_days
  @monitoring_interval_days
end

#staleness_daysFixnum

Customized export features time window for snapshot analysis. Unit is one day. Default value is 3 weeks. Minimum value is 1 day. Maximum value is 4000 days. Corresponds to the JSON property stalenessDays

Returns:

  • (Fixnum)


9225
9226
9227
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9225

def staleness_days
  @staleness_days
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9232
9233
9234
9235
9236
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 9232

def update!(**args)
  @disabled = args[:disabled] if args.key?(:disabled)
  @monitoring_interval_days = args[:monitoring_interval_days] if args.key?(:monitoring_interval_days)
  @staleness_days = args[:staleness_days] if args.key?(:staleness_days)
end