7.1.0 • Published 5 years ago

@bizappframework/ng-application-insights v7.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ng-application-insights

npm version Gitter

Contains Microsoft Azure Application Insights module for Angular projects.

Installation

npm install @bizappframework/ng-application-insights

Setup

import { BrowserAppInsightsModule } from '@bizappframework/ng-application-insights';

@NgModule({
    imports: [
        // Other module imports

        BrowserAppInsightsModule.forRoot({
            instrumentationKey: environment.aiInstrumentationKey,
            verboseLogging: true,
            enableDebug: true
        })
    ]
})
export class AppModule { }

Usage

import { Component, OnInit } from '@angular/core';

import { AppInsightsService } from '@bizappframework/ng-application-insights';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent implements OnInit {
    private readonly _logger: Logger;

    constructor(private readonly _appInsightsService: AppInsightsService) { }

    ngOnInit(): void {
        this._appInsightsService.trackEvent('ngOnInit');
    }
}

Example

ng-logging-aspnetcore-sample

License

MIT License