turbaszek opened a new issue #11623:
URL: https://github.com/apache/airflow/issues/11623


   **Description**
   
   Show basic information about Celery workers in Airflow webui.
   
   **Use case / motivation**
   
   Currently, users using CeleryExecutor have to use Flower to access 
information about Celery workers. I would like to propose adding new view in 
Airflow webui that would show similar information.
   
   This should be easily doable by using:
   ```py
   from airflow.executors.celery_executor import app
   
   inspect = self.app.control.inspect(timeout=0.01, destination=None)
   result = partial(getattr(inspect, "stats"))()
   ```
   
   Note: this is how Flower gets the information.
   
   **Related Issues**
   
   N/A
   


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to