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.
-
#request_response_logging_schema_version ⇒ ::String
readonly
Output only.
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)>
.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 209 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.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 209 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.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 209 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 |
#request_response_logging_schema_version ⇒ ::String (readonly)
Returns Output only. The schema version of the request/response logging BigQuery table. Default to v1 if unset.
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_deployment_monitoring_job.rb', line 209 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 |