0

Referencing the Microsoft Azure CLI Docs for Application Insights queries I see a parameter --type but I don't see a list of all the available types.

re: https://learn.microsoft.com/en-us/cli/azure/monitor/app-insights/events?view=azure-cli-latest#az_monitor_app_insights_events_show

For example this command:
az monitor app-insights events show --app 55555555-5555-5555-5555-555555555555 --type availabilityResults --start-time "2021-07-01 12:00:00.00" --end-time "2021-07-12 12:00:00.00" -o jsonc

Has the property --type as availabilityResults. What are all the available options for type?

Peter Bons
  • 26,826
  • 4
  • 50
  • 74
jmbmage
  • 2,487
  • 3
  • 27
  • 44

1 Answers1

1

Those events correspond with the tables you can query using kusto. From these docs:

Available options are standard event types (traces, customEvents, pageViews, requests, dependencies, exceptions, availabilityResults

Peter Bons
  • 26,826
  • 4
  • 50
  • 74