in generator/explores/operational_monitoring_explore.py [0:0]
def from_views(views: List[View]) -> Iterator[Explore]:
"""Generate an Operational Monitoring explore for this namespace."""
for view in views:
if view.view_type == "operational_monitoring_view":
yield OperationalMonitoringExplore(
"operational_monitoring",
{"base_view": view.name},
)