This PR adds analytics in the form of Azure Application Insights. The only analytics currently being tracked, aside from the default ones (user, session) is page views. Each time app.displayPage() is called, a data point is sent to AppInsights with the page name.
The App Insights module only loads on production, and a data point is only sent when the user is online.
Related Issue:
closes #68
Description of Changes
This PR adds analytics in the form of Azure Application Insights. The only analytics currently being tracked, aside from the default ones (user, session) is page views. Each time
app.displayPage()
is called, a data point is sent to AppInsights with the page name.The App Insights module only loads on production, and a data point is only sent when the user is online.