I would like to export all the handy data held on the databricks workflows tab shown here
as a csv or anything really so I can use the data elsewhere. How do I go about that? NB I've tried just copy and pasting it as a last resort but it doesn't even do that well (one column of rubbish) so if can be done programmatically that would be great. Many thanks
There are few ways of achieving it:
jobs listcommand has command-line parameter--allto get all defined jobs at once, and it also allows to get output as JSON, so you can use tool likejqto format it as you want (you must use--version 2.1flag because this command requires API 2.1):P.S. If you need more detailed information, pass
--expand-tasksparameter - it will output information about tasks inside jobs