Audit Stream Activities
When required to audit the creation of Teams meetings or live events videos, the activity of such events is logged to the Office 365 audit logs aka unified audit logs.
The following Powershell command, reliant upon the Exchange Online Powershell module, will search the audit logs over the last 90 days and output the relevant entries from the audit log:
ipmo exchangeonlinemanagement
connect-exchangeonline
$Logs = Search-UnifiedAuditLog -RecordType MicrosoftStream -StartDate ((Get-date).AddDays(-90)) -EndDate (get-date) -Resultsize 5000