Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save papeMK2/933bf457a48a58b39ce33eeaee4c96aa to your computer and use it in GitHub Desktop.
Save papeMK2/933bf457a48a58b39ce33eeaee4c96aa to your computer and use it in GitHub Desktop.
List application insights with classic or not
(az group list | ConvertFrom-Json) `
| select name `
| foreach { (az monitor app-insights component show -g $_.name | ConvertFrom-Json) } `
| select @{Name='name';Expression={$_.name}}, @{ Name = 'mode'; Expression = {$_.ingestionMode}}, @{ Name = 'IsClassic'; Expression = {$_.ingestionMode -ne 'LogAnalytics'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment