Stay organized with collections
Save and categorize content based on your preferences.
This page describes how to update and delete model monitors.
Update a model monitor
Update a model monitor to modify the default configuration for monitoring jobs.
You can't change the model version that a model monitor is associated with.
Instead, create a new model monitor.
Console
In the Google Cloud console, go to the Monitoring page.
Remove model monitors to prevent authorized users from inadvertently running
monitoring jobs on unused model monitors. When you delete a model monitor, any
associated monitoring data is deleted except for metrics and statistics exported
by Monitoring, which remain in Cloud Monitoring and in your
Cloud Storage.
Console
In the Google Cloud console, go to the Monitoring page.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 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```"]]