승인된 사용자가 사용되지 않는 모델 모니터에서 실수로 모니터링 작업을 실행하지 못하도록 모델 모니터를 삭제합니다. 모델 모니터를 삭제하면 관련 모니터링 데이터가 삭제됩니다. 단, Monitoring에서 내보낸 측정항목과 통계는 Cloud Monitoring 및 Cloud Storage에 유지됩니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-08(UTC)"],[],[],null,["# Manage model monitor\n\n| **Preview**\n|\n|\n| This product or feature is subject to the \"Pre-GA Offerings Terms\" in the General Service Terms section\n| of the [Service Specific Terms](/terms/service-terms#1).\n|\n| Pre-GA products and features are available \"as is\" and might have limited support.\n|\n| For more information, see the\n| [launch stage descriptions](/products#product-launch-stages).\n\nThis page describes how to update and delete model monitors.\n\nUpdate a model monitor\n----------------------\n\nUpdate a model monitor to modify the default configuration for monitoring jobs.\nYou can't change the model version that a model monitor is associated with.\nInstead, create a new model monitor. \n\n### Console\n\n1. In the Google Cloud console, go to the **Monitoring** page.\n\n [Go to Monitoring](https://console.cloud.google.com/vertex-ai/model-monitoring/model-monitors)\n2. Click the model monitor to go to the **Monitor details** page.\n\n3. Click **Edit configuration** to update the model monitor.\n\n4. Modify your schema, notifications, training data source, and objectives.\n\n5. Click **Save**.\n\n### Python SDK\n\nYou can update the following specifications:\n\n- Display name\n- Training dataset\n- Model schema\n- Default monitoring objectives\n- Default monitoring output specification\n- Default monitoring notification specification\n- Default explanation specification for feature attribution\n\nThe following example updates the model schema: \n\n```python\nmonitor_2.update(model_monitoring_schema=MODEL_MONITORING_SCHEMA)\n```\n\nDelete a model monitor\n----------------------\n\nRemove model monitors to prevent authorized users from inadvertently running\nmonitoring jobs on unused model monitors. When you delete a model monitor, any\nassociated monitoring data is deleted except for metrics and statistics exported\nby Monitoring, which remain in Cloud Monitoring and in your\nCloud Storage. \n\n### Console\n\n1. In the Google Cloud console, go to the **Monitoring** page.\n\n [Go to Monitoring](https://console.cloud.google.com/vertex-ai/model-monitoring/model-monitors)\n2. Click the model monitor to go to the **Monitor details** page.\n\n3. Click **Edit configuration** to update the model monitor.\n\n### Python SDK\n\n```python\nfrom google.cloud.aiplatform.private_preview.centralized_model_monitoring\nimport model_monitor\n\nmy_model_monitor.delete(force=true)\n```"]]