featurestore_monitoring.proto 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.aiplatform.v1beta1;
  16. import "google/protobuf/duration.proto";
  17. option csharp_namespace = "Google.Cloud.AIPlatform.V1Beta1";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1beta1;aiplatform";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "FeaturestoreMonitoringProto";
  21. option java_package = "com.google.cloud.aiplatform.v1beta1";
  22. option php_namespace = "Google\\Cloud\\AIPlatform\\V1beta1";
  23. option ruby_package = "Google::Cloud::AIPlatform::V1beta1";
  24. // Configuration of how features in Featurestore are monitored.
  25. message FeaturestoreMonitoringConfig {
  26. // Configuration of the Featurestore's Snapshot Analysis Based Monitoring.
  27. // This type of analysis generates statistics for each Feature based on a
  28. // snapshot of the latest feature value of each entities every
  29. // monitoring_interval.
  30. message SnapshotAnalysis {
  31. // The monitoring schedule for snapshot analysis.
  32. // For EntityType-level config:
  33. // unset / disabled = true indicates disabled by
  34. // default for Features under it; otherwise by default enable snapshot
  35. // analysis monitoring with monitoring_interval for Features under it.
  36. // Feature-level config:
  37. // disabled = true indicates disabled regardless of the EntityType-level
  38. // config; unset monitoring_interval indicates going with EntityType-level
  39. // config; otherwise run snapshot analysis monitoring with
  40. // monitoring_interval regardless of the EntityType-level config.
  41. // Explicitly Disable the snapshot analysis based monitoring.
  42. bool disabled = 1;
  43. // Configuration of the snapshot analysis based monitoring pipeline running
  44. // interval. The value is rolled up to full day.
  45. google.protobuf.Duration monitoring_interval = 2 [deprecated = true];
  46. // Configuration of the snapshot analysis based monitoring pipeline
  47. // running interval. The value indicates number of days.
  48. // If both
  49. // [FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval_days][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval_days]
  50. // and [FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval]
  51. // are set when creating/updating EntityTypes/Features,
  52. // [FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval_days][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.SnapshotAnalysis.monitoring_interval_days]
  53. // will be used.
  54. int32 monitoring_interval_days = 3;
  55. // Customized export features time window for snapshot analysis. Unit is one
  56. // day. Default value is 3 weeks. Minimum value is 1 day. Maximum value is
  57. // 4000 days.
  58. int32 staleness_days = 4;
  59. }
  60. // Configuration of the Featurestore's ImportFeature Analysis Based
  61. // Monitoring. This type of analysis generates statistics for values of each
  62. // Feature imported by every [ImportFeatureValues][] operation.
  63. message ImportFeaturesAnalysis {
  64. // The state defines whether to enable ImportFeature analysis.
  65. enum State {
  66. // Should not be used.
  67. STATE_UNSPECIFIED = 0;
  68. // The default behavior of whether to enable the monitoring.
  69. // EntityType-level config: disabled.
  70. // Feature-level config: inherited from the configuration of EntityType
  71. // this Feature belongs to.
  72. DEFAULT = 1;
  73. // Explicitly enables import features analysis.
  74. // EntityType-level config: by default enables import features analysis
  75. // for all Features under it. Feature-level config: enables import
  76. // features analysis regardless of the EntityType-level config.
  77. ENABLED = 2;
  78. // Explicitly disables import features analysis.
  79. // EntityType-level config: by default disables import features analysis
  80. // for all Features under it. Feature-level config: disables import
  81. // features analysis regardless of the EntityType-level config.
  82. DISABLED = 3;
  83. }
  84. // Defines the baseline to do anomaly detection for feature values imported
  85. // by each [ImportFeatureValues][] operation.
  86. enum Baseline {
  87. // Should not be used.
  88. BASELINE_UNSPECIFIED = 0;
  89. // Choose the later one statistics generated by either most recent
  90. // snapshot analysis or previous import features analysis. If non of them
  91. // exists, skip anomaly detection and only generate a statistics.
  92. LATEST_STATS = 1;
  93. // Use the statistics generated by the most recent snapshot analysis if
  94. // exists.
  95. MOST_RECENT_SNAPSHOT_STATS = 2;
  96. // Use the statistics generated by the previous import features analysis
  97. // if exists.
  98. PREVIOUS_IMPORT_FEATURES_STATS = 3;
  99. }
  100. // Whether to enable / disable / inherite default hebavior for import
  101. // features analysis.
  102. State state = 1;
  103. // The baseline used to do anomaly detection for the statistics generated by
  104. // import features analysis.
  105. Baseline anomaly_detection_baseline = 2;
  106. }
  107. // The config for Featurestore Monitoring threshold.
  108. message ThresholdConfig {
  109. oneof threshold {
  110. // Specify a threshold value that can trigger the alert.
  111. // 1. For categorical feature, the distribution distance is calculated by
  112. // L-inifinity norm.
  113. // 2. For numerical feature, the distribution distance is calculated by
  114. // Jensen–Shannon divergence. Each feature must have a non-zero threshold
  115. // if they need to be monitored. Otherwise no alert will be triggered for
  116. // that feature.
  117. double value = 1;
  118. }
  119. }
  120. // The config for Snapshot Analysis Based Feature Monitoring.
  121. SnapshotAnalysis snapshot_analysis = 1;
  122. // The config for ImportFeatures Analysis Based Feature Monitoring.
  123. ImportFeaturesAnalysis import_features_analysis = 2;
  124. // Threshold for numerical features of anomaly detection.
  125. // This is shared by all objectives of Featurestore Monitoring for numerical
  126. // features (i.e. Features with type ([Feature.ValueType][google.cloud.aiplatform.v1beta1.Feature.ValueType]) DOUBLE or INT64).
  127. ThresholdConfig numerical_threshold_config = 3;
  128. // Threshold for categorical features of anomaly detection.
  129. // This is shared by all types of Featurestore Monitoring for categorical
  130. // features (i.e. Features with type ([Feature.ValueType][google.cloud.aiplatform.v1beta1.Feature.ValueType]) BOOL or STRING).
  131. ThresholdConfig categorical_threshold_config = 4;
  132. }