Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nuxtjs/appinsights

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtjs/appinsights

AppInsights module for Nuxt.js

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

@nuxtjs/applicationinsights

npm version npm downloads Circle CI Codecov Dependencies Standard JS

ApplicationInsights module for Nuxt.js

Features

The module enables event logging through Application Insights.

Setup

  • Add @nuxtjs/applicationinsights dependency using yarn or npm to your project
  • Add @nuxtjs/applicationinsights to modules section of nuxt.config.js
{
  modules: [
    '@nuxtjs/applicationinsights',
  ],

  appInsights: {
    instrumentationKey: '' //  your project's Instrumentation Key here
  }
}

Nuxt compatibility

Versions of NuxtJS before v2.4.0 are not supported by this package.

Usage

Enter your Instrumentation Key in the NuxtJS config file. Additional config settings can be found server and client.

Usage in Vue component

In a Vue component, Application Insights is available as this.$appInsights, so we can call functions like

this.$appInsights.trackTrace({message: 'This message will use a telemetry initializer'})

where this is a Vue instance.

Options

Options can be passed using either environment variables or appInsights section in nuxt.config.js. Normally setting required Instrumentation Key information would be enough.

instrumentationKey

  • Type: String
    • Default: process.env.APPINSIGHTS_INSTRUMENTATION_KEY || false
    • If no instrumentationKey is provided module wont work

disabled

  • Type: Boolean
    • Default: process.env.APPINSIGHTS_DISABLED || false
    • ApplicationInsights will not be initialised if set to true.

disableClientSide

  • Type: Boolean
    • Default: process.env.APPINSIGHTS_DISABLE_CLIENT_SIDE || false

disableServerSide

  • Type: Boolean
    • Default: process.env.APPINSIGHTS_DISABLE_SERVER_SIDE || false

initialize

  • Type: Boolean
    • Default: process.env.APPINSIGHTS_INITIALIZE || true

trackPageView

  • Type: Boolean
    • Default: process.env.APPINSIGHTS_TRACK_PAGE_VIEW || true

serverConfig

  • Type: Object
    • Default: { }
    • If specified, values will override config values for server Application Insights plugin

clientConfig

  • Type: Object
    • Default: { }
    • If specified, values will override config values for client Application Insights plugin

License

MIT License

Copyright (c) Dmitry Molotkov aldarund@gmail.com

FAQs

Package last updated on 25 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc