generator.explores

All possible explore types.

 1"""All possible explore types."""
 2
 3from .explore import Explore  # noqa: F401 isort:skip
 4from .client_counts_explore import ClientCountsExplore
 5from .events_explore import EventsExplore
 6from .funnel_analysis_explore import FunnelAnalysisExplore
 7from .glean_ping_explore import GleanPingExplore
 8from .growth_accounting_explore import GrowthAccountingExplore
 9from .metric_definitions_explore import MetricDefinitionsExplore
10from .operational_monitoring_explore import (
11    OperationalMonitoringAlertingExplore,
12    OperationalMonitoringExplore,
13)
14from .ping_explore import PingExplore
15from .table_explore import TableExplore
16
17EXPLORE_TYPES = {
18    ClientCountsExplore.type: ClientCountsExplore,
19    EventsExplore.type: EventsExplore,
20    FunnelAnalysisExplore.type: FunnelAnalysisExplore,
21    GleanPingExplore.type: GleanPingExplore,
22    PingExplore.type: PingExplore,
23    GrowthAccountingExplore.type: GrowthAccountingExplore,
24    MetricDefinitionsExplore.type: MetricDefinitionsExplore,
25    OperationalMonitoringExplore.type: OperationalMonitoringExplore,
26    OperationalMonitoringAlertingExplore.type: OperationalMonitoringAlertingExplore,
27    TableExplore.type: TableExplore,
28}