Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/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
-
#disabled ⇒ Boolean
(also: #disabled?)
The monitoring schedule for snapshot analysis.
-
#monitoring_interval ⇒ String
Configuration of the snapshot analysis based monitoring pipeline running interval.
-
#monitoring_interval_days ⇒ Fixnum
Configuration of the snapshot analysis based monitoring pipeline running interval.
-
#staleness_days ⇒ Fixnum
Customized export features time window for snapshot analysis.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis
constructor
A new instance of GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis
Returns a new instance of GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigSnapshotAnalysis.
7699 7700 7701 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7699 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean 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
7676 7677 7678 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7676 def disabled @disabled end |
#monitoring_interval ⇒ String
Configuration of the snapshot analysis based monitoring pipeline running
interval. The value is rolled up to full day. If both monitoring_interval_days
and the deprecated monitoring_interval
field are set when creating/updating
EntityTypes/Features, monitoring_interval_days will be used.
Corresponds to the JSON property monitoringInterval
7685 7686 7687 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7685 def monitoring_interval @monitoring_interval end |
#monitoring_interval_days ⇒ Fixnum
Configuration of the snapshot analysis based monitoring pipeline running
interval. The value indicates number of days.
Corresponds to the JSON property monitoringIntervalDays
7691 7692 7693 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7691 def monitoring_interval_days @monitoring_interval_days end |
#staleness_days ⇒ Fixnum
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
7697 7698 7699 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7697 def staleness_days @staleness_days end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7704 7705 7706 7707 7708 7709 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 7704 def update!(**args) @disabled = args[:disabled] if args.key?(:disabled) @monitoring_interval = args[:monitoring_interval] if args.key?(:monitoring_interval) @monitoring_interval_days = args[:monitoring_interval_days] if args.key?(:monitoring_interval_days) @staleness_days = args[:staleness_days] if args.key?(:staleness_days) end |