Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@asymmetrik/ngx-instrumentation
Advanced tools
Angular.io Instrumentation Components and Services
Components, services, and classes to help instrument Angular.io applications
Install the package and its peer dependencies via npm (or yarn):
npm install ngx-instrumentation
If you want to run the demo, clone the repository, perform an npm install
, npm run demo
and then go to http://localhost:4200
This library consists of an instrumentation service as well as several integrations. The instrumentation service handles "events" that are generated by the integrations.
The first step is to include the ngx-instrumentation module in your application.
import { InstrumentationModule } from '@asymmetrik/ngx-instrumentation';
...
imports: [
...
InstrumentationModule.forRoot()
]
...
Step two is to provide your desired instrumentation service to the application. You should do this in your application module to ensure the service is available to the entire application.
There are two instrumentation services included in this package: InstrumentationService
and ServerInstrumentationService
.
InstrumentationService
logs all events to the console, which is likely only useful in development and testing.
ServerInstrumentationService
submits all events to a configurable REST endpoint, which is useful if you want to log events to your server.
If you would like to send events to a custom external service (e.g., Piwik, Google Analytics, etc.), you can provide your own service.
The default instrumentation service (InstrumentationService) logs events to the browser console and is only really useful for development and testing purposes. To use it, provide InstrumentationService as follows:
import { InstrumentationModule, InstrumentationService } from '@asymmetrik/ngx-instrumnetation';
...
providers: [
...
InstrumentationService
]
...
For server-side logging of events, use the ServerInstrumentationService
.
To configure this service, you must pass a factory method to the provider and use useFactory
.
This avoids a cyclical dependency and allows you to customize the REST endpoint for collecting the metrics.
In the following example, the REST call will be a POST to api/metrics
.
import { HttpBackend, HttpClientModule } from '@angular/common/http';
import { InstrumentationModule, InstrumentationService, ServerInstrumentationService } from '@asymmetrik/ngx-instrumentation';
@NgModule({
...
imports: [
...
HttpClientModule,
InstrumentationModule,
...
],
providers: [
...
{ provide: InstrumentationService, useFactory: serverInstrumentationServiceFactory, deps: [ HttpBackend ] },
...
],
...
})
export class AppModule { }
export function serverInstrumentationServiceFactory(httpBackend: HttpBackend) {
const svc = new ServerInstrumentationService(httpBackend);
svc.url = '/api/metrics';
return svc;
}
To use your own custom service, configuration would be similar to that of ServerInstrumentationService
.
The actual service should extend the InstrumentationService
class.
Once the instrumentation service is configured, you need to set up the integrations that will generate metrics. Currently, the plugin contains the following integrations:
This integration listens to Router events and passes them to the instrumentation service, including the previous and current route information. It is implemented as a component that needs to be placed in the application template. See the following example:
<section class="container">
...
<!-- Insert the following component into your application template -->
<routerInstrumentation></routerInstrumentation>
...
</section>
This integration captures handles errors generated by the application and passes them to the instrumentation service.
To configure it, you have to provide the InstrumentErrorHandler
to the application as follows:
import { ErrorHandler, NgModule } from '@angular/core';
import { InstrumentationModule, InstrumentErrorHandler } from '@asymmetrik/ngx-instrumentation';
@NgModule({
...
providers: [
{ provide: ErrorHandler, useClass: InstrumentErrorHandler }
...
],
...
})
export class AppModule { }
Note: The global error handler will handle all Angular zone errors.
To help with development (and to ensure that errors aren't ignored), the plugin still logs errors to the client error console.
To disable this and hide all Angular errors from the client, you can configure the InstrumentErrorHandler
using useFactory
as follows:
import { ErrorHandler, NgModule } from '@angular/core';
import { InstrumentationModule, InstrumentErrorHandler, InstrumentationService } from '@asymmetrik/ngx-instrumentation';
@NgModule({
...
providers: [
...
{ provide: ErrorHandler, useFactory: errorHandlerFactory, deps: [ InstrumentationService ] },
...
],
...
})
export class AppModule { }
export function errorHandlerFactory(instrumentationService: InstrumentationService) {
const handler = new InstrumentErrorHandler(instrumentationService);
handler.logErrorsToConsole = true;
return handler;
}
This integration captures all HTTP calls made in the application. Excludes parameters and body info by default (so it doesn't log sensitive information like passwords). You can override the config by using useFactory like how you do for the ServerInstrumentationService. To configure it, you have to provide the Instrument HTTP interceptor.
import { HTTP_INTERCEPTORS, HttpClient, HttpClientModule } from '@angular/common/http';
import { InstrumentationModule, InstrumentHttpInterceptor } from '@asymmetrik/ngx-instrumentation';
@NgModule({
...
imports: [
...
HttpClientModule,
InstrumentationModule,
...
],
providers: [
HttpClient,
{ provide: HTTP_INTERCEPTORS, useClass: InstrumentHttpInterceptor, multi: true },
...
],
...
})
export class AppModule { }
/src/demo
to the end of the URL to hit the demo.PRs accepted. If you are part of Asymmetrik, please make contributions on feature branches off of the develop
branch. If you are outside of Asymmetrik, please fork our repo to make contributions.
See LICENSE in repository for details.
FAQs
Angular.io Instrumentation Components and Services
We found that @asymmetrik/ngx-instrumentation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.