简体   繁体   English

如何在 GCP 控制台中查看监控作业?

[英]How do I see monitoing jobs in GCP console?

I have created a monitoring job using create_model_deployment_monitoring_job .我使用create_model_deployment_monitoring_job创建了一个监控作业。 How do I view it in GCP Monitoring?如何在 GCP 监控中查看它?

I create the monitoring job thus:我因此创建了监视作业:

job = vertex_ai_beta.ModelDeploymentMonitoringJob(
display_name=MONITORING_JOB_NAME,
endpoint=endpoint_uri,
model_deployment_monitoring_objective_configs=deployment_objective_configs,
logging_sampling_strategy=sampling_config,
model_deployment_monitoring_schedule_config=schedule_config,
model_monitoring_alert_config=alerting_config,
)
response = job_client_beta.create_model_deployment_monitoring_job(
    parent=PARENT, model_deployment_monitoring_job=job
)

在此处输入图像描述

AI Platform Training supports two types of jobs: training and batch prediction. AI Platform Training 支持两种类型的作业:训练和批量预测。 The details for each are different, but the basic operation is the same.每个的细节都不同,但基本操作是相同的。 As you are using Vertex AI, you can check the job status in the Vertex AI dashboard.在使用 Vertex AI 时,您可以在 Vertex AI 仪表板中检查作业状态。 In GCP Console search for Vertex AI, enable API or click on this link and follow this Doc for Job status在 GCP Console 中搜索 Vertex AI,启用 API 或单击此链接并按照此文档查看作业状态

Then following this Link summarizes the job operations and lists the interfaces you can use to perform them and also to know more information about Jobs follow this link然后点击此链接总结了作业操作并列出了您可以用来执行它们的界面,并了解有关作业的更多信息,请点击此链接

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何检查 GCP 服务帐户是否具有对 Google Drive 的完全访问权限? - How do I check to see if a GCP service account has full access to Google Drive? 我如何在 GCP 控制台上配置特定项目? - how can i configure out the specific project on GCP console? 如何在 GCP 中为 secret 赋予角色? - How do I give a role to secret in GCP? 如何在 GCP 中为 ModelMonitoringAlertConfig 启用日志记录? - How do I enable_logging for ModelMonitoringAlertConfig in GCP? 如何测试写在 GCP function 文件中的 function - How do I test a function written in a GCP function file 如何在 GCP 上设置托管区域? - How do I set up a hosted zone on GCP? 如何使用 Python 创建/管理 GCP API 密钥 - How do I create/manage GCP API keys using Python 如何按域、域的 IP 或 GKE 入口 IP 限制 GCP 负载均衡器访问? - How do I restrict GCP load balancer access by domain, domain's IP or GKE ingress IP? 如何确保 GCP 服务帐户没有管理员权限? - How can I ensure that GCP service accounts do not have Admin privileges? 我们在哪里可以看到 GCP 控制台中每个 dataproc 集群的账单明细或产生的费用明细 - Where can we see the billing details or cost incurred details for each dataproc cluster in GCP console
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM