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 list
command has command-line parameter--all
to get all defined jobs at once, and it also allows to get output as JSON, so you can use tool likejq
to format it as you want (you must use--version 2.1
flag because this command requires API 2.1):P.S. If you need more detailed information, pass
--expand-tasks
parameter - it will output information about tasks inside jobs