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
-**Granularity dropdown** — switch between computed granularities and baseline
423
+
-**Time Series Analysis** — trend charts for aggregate metrics drift (Mean/P50/P95) and null rate evolution over time
424
+
425
+
### Computing metrics from the UI
426
+
427
+
Click the **Compute Metrics** button in the page header to trigger an `auto_compute` job. This computes all granularities for all feature views (or the selected feature view if filtered). Results appear after the table refreshes.
428
+
429
+
The **Refresh** button re-fetches already computed metrics from the backend without triggering new computation.
430
+
431
+
### When no data is available
432
+
433
+
If no metrics have been computed yet, the page shows a prompt:
434
+
435
+
> No monitoring data has been computed for this project. Click "Compute Metrics" to run data quality analysis on your feature views.
436
+
437
+
If the monitoring backend is unreachable, a warning banner appears:
438
+
439
+
> Could not connect to the monitoring API. Make sure the Feast registry server is running with monitoring enabled.
440
+
441
+
### Enabling monitoring for the UI
442
+
443
+
The monitoring page is always accessible in the sidebar. To see actual data:
444
+
445
+
1. Add `data_quality_monitoring` to your `feature_store.yaml`:
446
+
447
+
```yaml
448
+
data_quality_monitoring:
449
+
auto_baseline: true
450
+
```
451
+
452
+
Or, when using the Feast operator, set this in the `FeatureStore` CR:
453
+
454
+
```yaml
455
+
apiVersion: feast.dev/v1
456
+
kind: FeatureStore
457
+
spec:
458
+
feastProject: my_project
459
+
dataQualityMonitoring:
460
+
autoBaseline: true
461
+
```
462
+
463
+
2. Run `feast apply` — this computes baseline metrics automatically
464
+
3. Schedule `feast monitor run` (or click "Compute Metrics" in the UI) to generate daily/weekly/monthly metrics
0 commit comments