Add Quality Monitors reference to Unity Catalog skill#226
Open
CheeYuTan wants to merge 1 commit intodatabricks-solutions:mainfrom
Open
Add Quality Monitors reference to Unity Catalog skill#226CheeYuTan wants to merge 1 commit intodatabricks-solutions:mainfrom
CheeYuTan wants to merge 1 commit intodatabricks-solutions:mainfrom
Conversation
Documents the manage_uc_monitors MCP tool which had zero skill coverage.
Covers the full monitor lifecycle: create → get → refresh → query → delete.
Tested end-to-end against a live workspace with real monitors:
- Created monitors on real Delta tables
- Triggered manual refreshes and verified output tables
- Verified all 28 profile metrics columns and 22 drift metrics columns
- Confirmed drift metrics require 2+ refreshes to populate
- Verified delete response is {} (not a status object)
- All test monitors cleaned up after testing
Key findings from testing:
- Profile metrics schema had 9 undocumented columns (now included)
- Drift metrics schema had 8 undocumented columns (now included)
- Delete returns empty dict, not status object
- No "list" action exists — must use information_schema to discover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents the
manage_uc_monitorsMCP tool which had zero skill coverage. Adds8-quality-monitors.mdas a new reference file under the Unity Catalog skill.What's in the file (384 lines)
create,get,run_refresh,list_refreshes,delete) with parametersTest evidence — full lifecycle on live workspace
E2E monitor lifecycle
table_name="main.pizza_llc.menu_items"MONITOR_STATUS_ACTIVE,dashboard_idassignedrefresh_idreturned, state=PENDING, trigger=MANUALrefreshesarray with correct shapeSELECT * FROM ...menu_items_profile_metricsSELECT * FROM ...menu_items_drift_metrics{}(empty dict)What testing found and fixed
{"status": "deleted", "table_name": "..."}{}(empty dict){}DESCRIBE TABLEon real output tableDESCRIBE TABLEon real output tableassets_dirbehaviorKey verified claims
listaction exists —GET /unity-catalog/monitorsreturns "No API found"{table}_profile_metrics/{table}_drift_metricsnamingTest plan