Hi Everyone,
I am currently pulling in Azure App Insights data in ELK Stack using Metricbeat, like this
module: azure
metricsets:
- app_insights
enabled: true
period: 300s
application_id: ''
api_key: ''
metrics:
- id: ["requests/count", "requests/duration"]
where I provide the API Key and Application Id
I was wondering if I can pull multiple app insights using the same azure.yml in metricbeat
How can I assign different indices to them?
Or what would be a better approach to call multiple app insights data?
Also I would like to hook up these different app insights data to different logstash pipelines
Thanks