For each operator, you can define its own extra links that can redirect users to external systems. The extra link buttons will be available on the task page:
The following code shows how to add extra links to an operator via Plugins:
from airflow.models.baseoperator import BaseOperator, BaseOperatorLinkfrom airflow.plugins_manager import AirflowPluginfrom airflow.utils.decorators import apply_defaultsclass GoogleLink(BaseOperatorLink):name = 'Google'def get_link(self, operator, dttm):return "https://www.google.com"class MyFirstOperator(BaseOperator):operator_extra_links = (GoogleLink(),)@apply_defaultsdef __init__(self, **kwargs):super().__init__(**kwargs)def execute(self, context):self.log.info("Hello World!")# Defining the plugin classclass AirflowExtraLinkPlugin(AirflowPlugin):name = "extra_link_plugin"operator_extra_links = [GoogleLink(), ]
:::tips 🔖 Note ::: :::info Operator Extra Links should be registered via Airflow Plugins or custom Airflow Provider to work. :::
You can also add a global operator extra link that will be available to all the operators through an airflow plugin or through airflow providers. You can learn more about it in the plugin example and in Provider packages.
1. Add or override Links to Existing Operators
You can also add (or override) an extra link to an existing operators through an Airflow plugin or custom provider.
For example, the following Airflow plugin will add an Operator Link on all tasks using [GCSToS3Operator](https://airflow.apache.org/docs/apache-airflow-providers-amazon/stable/_api/airflow/providers/amazon/aws/transfers/gcs_to_s3/index.html#airflow.providers.amazon.aws.transfers.gcs_to_s3.GCSToS3Operator) operator.
Adding Operator Links to Existing Operators plugins/extra_link.py:
from airflow.plugins_manager import AirflowPluginfrom airflow.models.baseoperator import BaseOperatorLinkfrom airflow.providers.amazon.aws.transfers.gcs_to_s3 import GCSToS3Operatorclass S3LogLink(BaseOperatorLink):name = 'S3'# Add list of all the operators to which you want to add this OperatorLinks# Example: operators = [GCSToS3Operator, GCSToBigQueryOperator]operators = [GCSToS3Operator]def get_link(self, operator, dttm):return 'https://s3.amazonaws.com/airflow-logs/{dag_id}/{task_id}/{execution_date}'.format(dag_id=operator.dag_id,task_id=operator.task_id,execution_date=dttm,)# Defining the plugin classclass AirflowExtraLinkPlugin(AirflowPlugin):name = "extra_link_plugin"operator_extra_links = [S3LogLink(), ]
12.1 Overriding Operator Links of Existing Operators
It is also possible to replace a built in link on an operator via a Plugin. For example [BigQueryExecuteQueryOperator](https://airflow.apache.org/docs/apache-airflow-providers-google/stable/_api/airflow/providers/google/cloud/operators/bigquery/index.html#airflow.providers.google.cloud.operators.bigquery.BigQueryExecuteQueryOperator) includes a link to the Google Cloud Console, but if we wanted to change that link we could:
from airflow.plugins_manager import AirflowPluginfrom airflow.models.baseoperator import BaseOperatorLinkfrom airflow.providers.google.cloud.operators.bigquery import BigQueryOperator# Change from https to http just to display the overrideBIGQUERY_JOB_DETAILS_LINK_FMT = 'http://console.cloud.google.com/bigquery?j={job_id}'class BigQueryConsoleLink(BaseOperatorLink):"""Helper class for constructing BigQuery link."""name = 'BigQuery Console'operators = [BigQueryOperator]def get_link(self, operator, dttm):ti = TaskInstance(task=operator, execution_date=dttm)job_id = ti.xcom_pull(task_ids=operator.task_id, key='job_id')return BIGQUERY_JOB_DETAILS_LINK_FMT.format(job_id=job_id) if job_id else ''# Defining the plugin classclass AirflowExtraLinkPlugin(AirflowPlugin):name = "extra_link_plugin"operator_extra_links = [BigQueryConsoleLink(), ]
12.2 Adding Operator Links via Providers
As explained in Provider packages, when you create your own Airflow Provider, you can specify the list of operators that provide extra link capability. This happens by including the operator class name in the provider-info information stored in your Provider’s package meta-data:
Example meta-data required in your provider-info dictionary (this is part of the meta-data returned by apache-airflow-providers-google provider currently:
extra-links:- airflow.providers.google.cloud.operators.bigquery.BigQueryConsoleLink- airflow.providers.google.cloud.operators.bigquery.BigQueryConsoleIndexableLink- airflow.providers.google.cloud.operators.mlengine.AIPlatformConsoleLink
You can include as many operators with extra links as you want.
