You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add missing endpoints for Monitors:
- Update & delete monitor endpoint
- Updated Streamlit to reflect new changes
- New endpoind tests
- Bug fixes in Streamlit
- Chnages in Model update endpoint
* Tests and documentation
Copy file name to clipboardExpand all lines: docs/mkdocs/docs/sdk-docs.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,27 @@ Creates a monitor for a specific metric.
100
100
101
101
Some metrics like the data drift don't use a threshold so the feature that will be monitored should be inserted. In any case, both `feature` and `lower_threshold` can't be `None` at the same time.
|**model_monitor_id**|`str`| The ID of the model monitor to update. |
110
+
|**name**|`str`| The name of the monitor. Defaults to `None`. |
111
+
|**status**|`MonitorStatus`| The status of the monitor. Possible values for `MonitorStatus`: `active`, `inactive`. Defaults to `None`. |
112
+
|**severity**|`AlertSeverity`| The severity of the alert the monitor produces. Possible values for `AlertSeverity`: `low`, `mid`, `high`. Defaults to `None`. |
113
+
|**email**|`str`| The email to which the alert will be sent. Defaults to `None`. |
114
+
|**lower_threshold**|`float`| The threshold below which an alert will be produced. Defaults to `None`. |
0 commit comments