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 .events_stream_explore import EventsStreamExplore
 7from .funnel_analysis_explore import FunnelAnalysisExplore
 8from .glean_ping_explore import GleanPingExplore
 9from .growth_accounting_explore import GrowthAccountingExplore
10from .metric_definitions_explore import MetricDefinitionsExplore
11from .operational_monitoring_explore import (
12    OperationalMonitoringAlertingExplore,
13    OperationalMonitoringExplore,
14)
15from .ping_explore import PingExplore
16from .table_explore import TableExplore
17
18EXPLORE_TYPES = {
19    ClientCountsExplore.type: ClientCountsExplore,
20    EventsExplore.type: EventsExplore,
21    EventsStreamExplore.type: EventsStreamExplore,
22    FunnelAnalysisExplore.type: FunnelAnalysisExplore,
23    GleanPingExplore.type: GleanPingExplore,
24    PingExplore.type: PingExplore,
25    GrowthAccountingExplore.type: GrowthAccountingExplore,
26    MetricDefinitionsExplore.type: MetricDefinitionsExplore,
27    OperationalMonitoringExplore.type: OperationalMonitoringExplore,
28    OperationalMonitoringAlertingExplore.type: OperationalMonitoringAlertingExplore,
29    TableExplore.type: TableExplore,
30}