Reputation: 857
We have some Azure web sites/APIs and web jobs that are using the log4net App Insights appender to push our log4net diagnostic logs into to Azure app insights. We want to be notified when errors occur so we don't have to go looking for errors or wait for user error reports. Is there built in functionality in App Insights to be notified? Or should we build a web job to poll somehow and send us alerts?
Upvotes: 1
Views: 1483
Reputation: 25126
The closest thing to what you want is probably alerting based on an analytics query:
which is in preview form and being worked on. there's no current way to alert on anything but web tests and metric values.
Upvotes: 1
Reputation: 447
azure portal > your Application Insight > Alerts > Add Alert > Choose your Metric.
Upvotes: 0