on https://metabase.mycompany.com/activity with admin permission we saw global activity log. Which was great to check adoption process. After recent updates that panel is missing. Can't find any information why it's missing. Is it design, or just bug? : )
i would be really glad if that functionality return
(it was right here)
Looks like I'll have to use a workaround and query the internal Metabase DB (running on MySQL)
SELECT ac.timestamp, ac.topic AS action, usr.full_name AS user,
substring_index(substring_index(ac.details,'name":"',-1),'"',1) AS details, da.name AS db, ta.name AS db_table
FROM activity ac
LEFT JOIN v_users usr ON usr.user_id = ac.user_id
LEFT JOIN metabase_database da ON da.id = ac.database_id
LEFT JOIN metabase_table ta ON ta.id = ac.table_id
ORDER BY TIMESTAMP DESC
but its not reliable in some actions like dashboard-add-cards...