@latelier/vue-application-insights
v1.0.6
Published
Downloads
7
Readme
vue-application-insights
Installation
$ npm install vue-application-insights --save
Get started
import Vue from 'vue'
import VueAppInsights from 'vue-application-insights'
Vue.use(VueAppInsights, {
id: 'XXXXXXXX--XXXX-XXXX-XXXXXXXXXXXX'
})
With vue router
import Vue from 'vue'
import router from './router'
import VueAppInsights from 'vue-application-insights'
Vue.use(VueAppInsights, {
id: 'XXXXXXXX--XXXX-XXXX-XXXXXXXXXXXX',
router
})
Example with custom track event
Vue.extend({
methods: {
custom_action() {
this.$appInsights.trackEvent("custom_action", { value: 'ok' });
}
}
});
Options
- id - The instrumentation key of your AppInsights resource on Azure.
- router - The router instance, which events should be tracked as page views (optional). baseName String that will prefix the name of the tracked page (optional, default is '(Vue App)') appInsights Instance of the Application Insights client (optional).
- trackInitialPageView - Boolean that determines whether or not the initial page view should be tracked. (optional, defaults to true)
Initializing AppInsights from outside the Vue application
Maybe you use server side code to include the javascript snippet that initializes AppInsights. In that case you want to provide the AppInsights instance to this Vue plugin and prevent it from tracking the initial page view.
import Vue from 'vue'
import router from './router'
import VueAppInsights from 'vue-application-insights'
Vue.use(VueAppInsights, {
appInsights: window.appInsights,
trackInitialPageView: false,
router
})