Engage in discussions on data warehousing, analytics, and BI solutions within the Databricks Community. Share insights, tips, and best practices for leveraging data for informed decision-making.
I'm trying to find information to see who runs a notebook. I'm able to see who created the notebook, and I can find out when the notebook is ran, but there doesn't seem to be any information on who ran it, only who created the notebook.
SELECT *
FROM system.logs
WHERE event_type = 'notebook_run'
ORDER BY timestamp DESC;
@KrisMcDougal with this code you can check from which user id the first command of the notebook got started and you will get to know who started the notebook.