-
Notifications
You must be signed in to change notification settings - Fork 16.6k
Closed
Labels
area:webserverWebserver related IssuesWebserver related Issueskind:featureFeature RequestsFeature RequeststelemetryTelemetry-related issuesTelemetry-related issues
Description
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:
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
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area:webserverWebserver related IssuesWebserver related Issueskind:featureFeature RequestsFeature RequeststelemetryTelemetry-related issuesTelemetry-related issues