Skip to content

Instantly share code, notes, and snippets.

@mowings
Created July 11, 2025 17:58
Show Gist options
  • Select an option

  • Save mowings/ea04ac0e05a746d54d03fcc56270de6b to your computer and use it in GitHub Desktop.

Select an option

Save mowings/ea04ac0e05a746d54d03fcc56270de6b to your computer and use it in GitHub Desktop.
Log Insights -- Count instances of a matched pattern
fields @timestamp, @message
| filter @message like /Digest/
| parse @message /Digest: "(?<digest>.*)"/
| stats count() as occurrences by digest
| sort occurrences desc

Counts distinct digest matches.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment