MCPcopy Index your code
hub / github.com/feast-dev/feast / _get_monitoring_service

Function _get_monitoring_service

sdk/python/feast/api/registry/rest/monitoring.py:59–70  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

57 _monitoring_service = None
58
59 def _get_monitoring_service():
60 nonlocal _monitoring_service
61 if _monitoring_service is None:
62 if store is None:
63 raise HTTPException(
64 status_code=503,
65 detail="Monitoring service is not available: no FeatureStore configured",
66 )
67 from feast.monitoring.monitoring_service import MonitoringService
68
69 _monitoring_service = MonitoringService(store)
70 return _monitoring_service
71
72 def _get_store():
73 if store is None:

Callers 11

compute_metricsFunction · 0.85
auto_computeFunction · 0.85
compute_log_metricsFunction · 0.85
auto_compute_logFunction · 0.85
get_job_statusFunction · 0.85
compute_transientFunction · 0.85
get_feature_metricsFunction · 0.85
get_feature_view_metricsFunction · 0.85
get_baselineFunction · 0.85
get_timeseriesFunction · 0.85

Calls 1

MonitoringServiceClass · 0.90

Tested by

no test coverage detected