dags/fxci_metric_export.py [15:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
default_args = {
    "owner": "ahalberstadt@mozilla.com",
    "depends_on_past": False,
    "start_date": datetime(2024, 7, 8),
    "email_on_failure": True,
    "email_on_retry": False,
    "retries": 1,
    "retry_delay": timedelta(minutes=30),
}

tags = [Tag.ImpactTier.tier_3]

env_vars = {
    "FXCI_ETL_BIGQUERY_PROJECT": "moz-fx-data-shared-prod",
    "FXCI_ETL_BIGQUERY_DATASET": "fxci_derived",
    "FXCI_ETL_STORAGE_PROJECT": "moz-fx-dev-releng",
    "FXCI_ETL_STORAGE_BUCKET": "fxci-etl",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dags/fxci_pulse_export.py [18:34]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
default_args = {
    "owner": "ahalberstadt@mozilla.com",
    "depends_on_past": False,
    "start_date": datetime(2024, 7, 8),
    "email_on_failure": True,
    "email_on_retry": False,
    "retries": 1,
    "retry_delay": timedelta(minutes=30),
}

tags = [Tag.ImpactTier.tier_3]

env_vars = {
    "FXCI_ETL_BIGQUERY_PROJECT": "moz-fx-data-shared-prod",
    "FXCI_ETL_BIGQUERY_DATASET": "fxci_derived",
    "FXCI_ETL_STORAGE_PROJECT": "moz-fx-dev-releng",
    "FXCI_ETL_STORAGE_BUCKET": "fxci-etl",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



