Slack 通知操作指南¶
簡介¶
Slack 通知器 (airflow.providers.slack.notifications.slack.SlackNotifier
) 允許使用者透過 DAG 層級和任務層級的各種 on_*_callbacks
發送訊息到 Slack 頻道
範例程式碼:¶
from datetime import datetime
from airflow import DAG
from airflow.providers.standard.operators.bash import BashOperator
from airflow.providers.slack.notifications.slack import send_slack_notification
with DAG(
start_date=datetime(2023, 1, 1),
on_success_callback=[
send_slack_notification(
text="The DAG {{ dag.dag_id }} succeeded",
channel="#general",
username="Airflow",
)
],
):
BashOperator(
task_id="mytask",
on_failure_callback=[
send_slack_notification(
text="The task {{ ti.task_id }} failed",
channel="#general",
username="Airflow",
)
],
bash_command="fail",
)