The "Recent Tasks" column of the webserver UI is blank on our production instance. This appears to be the result of the `/task_stats` request being too large: https://ookla.d.pr/L5qleA
While I can't share the actual URL, the math would indicate this anyway. It appears that the URL uses a `dag_ids` parameter that is a comma separated list in the GET request. Since DAGs can have a `dag_id` length of 250 characters and the UI will show up to 100 DAGs per page, this means that the URL parameters alone could be 25,000 characters (not including domain, etc.). It seems that it might be best to switch this request over to POST to accommodate the potentially large request body.
- links to