Class: Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb
Overview
ModelDeploymentMonitoringBigQueryTable specifies the BigQuery table name as well as some information of the logs stored in this table.
Defined Under Namespace
Instance Attribute Summary collapse
-
#bigquery_table_path ⇒ ::String
The created BigQuery table to store logs.
-
#log_source ⇒ ::Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable::LogSource
The source of log.
-
#log_type ⇒ ::Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable::LogType
The type of log.
Instance Attribute Details
#bigquery_table_path ⇒ ::String
Returns The created BigQuery table to store logs. Customer could do their own query
& analysis. Format:
bq://<project_id>.model_deployment_monitoring_<endpoint_id>.<tolower(log_source)>_<tolower(log_type)>
.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 196 class ModelDeploymentMonitoringBigQueryTable include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates where does the log come from. module LogSource # Unspecified source. LOG_SOURCE_UNSPECIFIED = 0 # Logs coming from Training dataset. TRAINING = 1 # Logs coming from Serving traffic. SERVING = 2 end # Indicates what type of traffic does the log belong to. module LogType # Unspecified type. LOG_TYPE_UNSPECIFIED = 0 # Predict logs. PREDICT = 1 # Explain logs. EXPLAIN = 2 end end |
#log_source ⇒ ::Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable::LogSource
Returns The source of log.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 196 class ModelDeploymentMonitoringBigQueryTable include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates where does the log come from. module LogSource # Unspecified source. LOG_SOURCE_UNSPECIFIED = 0 # Logs coming from Training dataset. TRAINING = 1 # Logs coming from Serving traffic. SERVING = 2 end # Indicates what type of traffic does the log belong to. module LogType # Unspecified type. LOG_TYPE_UNSPECIFIED = 0 # Predict logs. PREDICT = 1 # Explain logs. EXPLAIN = 2 end end |
#log_type ⇒ ::Google::Cloud::AIPlatform::V1::ModelDeploymentMonitoringBigQueryTable::LogType
Returns The type of log.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 196 class ModelDeploymentMonitoringBigQueryTable include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Indicates where does the log come from. module LogSource # Unspecified source. LOG_SOURCE_UNSPECIFIED = 0 # Logs coming from Training dataset. TRAINING = 1 # Logs coming from Serving traffic. SERVING = 2 end # Indicates what type of traffic does the log belong to. module LogType # Unspecified type. LOG_TYPE_UNSPECIFIED = 0 # Predict logs. PREDICT = 1 # Explain logs. EXPLAIN = 2 end end |