registered
List of registered tasks.
def registered(
state: object,
taskinfoitems: Sequence[str] = None,
builtins: bool = False
) - > list
List of registered tasks.
Parameters
| Name | Type | Description |
|---|---|---|
| state | object | The current inspector state containing the Celery application instance and task registry. |
| taskinfoitems | Sequence[str] = None | List of task attributes to include in the output, such as 'exchange' or 'rate_limit'. Defaults to 'exchange,routing_key,rate_limit'. |
| builtins | bool = False | Whether to include internal Celery built-in tasks in the resulting list. |
Returns
| Type | Description |
|---|---|
list | A list of strings where each entry contains the task name and its requested attribute values formatted as 'name [attr=val]'. |