vincbeck opened a new issue, #48017: URL: https://github.com/apache/airflow/issues/48017
### Description With AIP-82 being completed, an asset can have one or multiple asset watchers associated to it. Example: ``` trigger = MessageQueueTrigger(queue="https://sqs.us-east-1.amazonaws.com/0123456789/Test") asset = Asset("sqs_asset", watchers=[ AssetWatcher(name="sqs_asset_watcher", trigger=trigger) ]) with DAG( dag_id="example_msgq_watcher", schedule=[asset], catchup=False, ): task = EmptyOperator(task_id="task") chain(task) ``` Today in Airflow we can see the assets in graph view but not the asset watchers: <img width="427" alt="Image" src="https://github.com/user-attachments/assets/afae6956-6ecd-46f2-8489-34dfb7e65fb1" /> ### Use case/motivation It would be nice to display the different asset watcher(s) associated to assets. That would be valuable information for the user in order to see if the Dag is using event-driven scheduling. ### Related issues _No response_ ### Are you willing to submit a PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [x] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
