Skip to content

Instantly share code, notes, and snippets.

@Torxsmind
Created June 16, 2020 20:46
Show Gist options
  • Select an option

  • Save Torxsmind/6978d24022ddaac73c2fd8130f290ee0 to your computer and use it in GitHub Desktop.

Select an option

Save Torxsmind/6978d24022ddaac73c2fd8130f290ee0 to your computer and use it in GitHub Desktop.
get oldest and newest logs from log analytics
let oldest = ProtectionStatus
| where TimeGenerated < ago(1h)
| top 10 by TimeGenerated desc;
let newest = ProtectionStatus
| where TimeGenerated < ago(1h)
| top 10 by TimeGenerated asc;
union oldest, newest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment