Is there any way to see who ran a notebook?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 12:30 PM
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2024 03:36 AM - edited 07-17-2024 03:40 AM
Hi @KrisMcDougal ,
Unfortunately, I think there is no direct API to get this information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2024 02:48 AM
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.

