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 in {
"operational_monitoring_alerting_view",
}:
yield OperationalMonitoringAlertingExplore(
"operational_monitoring",
{"base_view": view.name},
)