Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions airflow/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,18 +350,6 @@ def sensitive_config_values(self) -> Set[tuple[str, str]]: # noqa: UP006
"2.0.0",
),
("logging", "task_log_reader"): ("core", "task_log_reader", "2.0.0"),
("metrics", "metrics_allow_list"): ("metrics", "statsd_allow_list", "2.6.0"),
("metrics", "metrics_block_list"): ("metrics", "statsd_block_list", "2.6.0"),
("metrics", "statsd_on"): ("scheduler", "statsd_on", "2.0.0"),
("metrics", "statsd_host"): ("scheduler", "statsd_host", "2.0.0"),
("metrics", "statsd_port"): ("scheduler", "statsd_port", "2.0.0"),
("metrics", "statsd_prefix"): ("scheduler", "statsd_prefix", "2.0.0"),
("metrics", "statsd_allow_list"): ("scheduler", "statsd_allow_list", "2.0.0"),
("metrics", "stat_name_handler"): ("scheduler", "stat_name_handler", "2.0.0"),
("metrics", "statsd_datadog_enabled"): ("scheduler", "statsd_datadog_enabled", "2.0.0"),
("metrics", "statsd_datadog_tags"): ("scheduler", "statsd_datadog_tags", "2.0.0"),
("metrics", "statsd_datadog_metrics_tags"): ("scheduler", "statsd_datadog_metrics_tags", "2.6.0"),
("metrics", "statsd_custom_client_path"): ("scheduler", "statsd_custom_client_path", "2.0.0"),
("scheduler", "parsing_processes"): ("scheduler", "max_threads", "1.10.14"),
("operators", "default_queue"): ("celery", "default_queue", "2.1.0"),
("core", "hide_sensitive_var_conn_fields"): ("admin", "hide_sensitive_variable_fields", "2.1.0"),
Expand Down
14 changes: 14 additions & 0 deletions newsfragments/42088.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Removed deprecated metrics configuration.

* Removed deprecated configuration ``statsd_allow_list`` from ``metrics``. Please use ``metrics_allow_list`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_block_list`` from ``metrics``. Please use ``metrics_block_list`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_on`` from ``scheduler``. Please use ``statsd_on`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_host`` from ``scheduler``. Please use ``statsd_host`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_port`` from ``scheduler``. Please use ``statsd_port`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_prefix`` from ``scheduler``. Please use ``statsd_prefix`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_allow_list`` from ``scheduler``. Please use ``statsd_allow_list`` from ``metrics`` instead.
* Removed deprecated configuration ``stat_name_handler`` from ``scheduler``. Please use ``stat_name_handler`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_datadog_enabled`` from ``scheduler``. Please use ``statsd_datadog_enabled`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_datadog_tags`` from ``scheduler``. Please use ``statsd_datadog_tags`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_datadog_metrics_tags`` from ``scheduler``. Please use ``statsd_datadog_metrics_tags`` from ``metrics`` instead.
* Removed deprecated configuration ``statsd_custom_client_path`` from ``scheduler``. Please use ``statsd_custom_client_path`` from ``metrics`` instead.