As a development team, we must always seek to offer the best experience for our users, and, in addition to developing quality products, we must allow the application to be monitored to maintain quality during production.
There are several tools available on the market, and many of them need some level of instrumentation to accurately measure the user experience. We will develop a simpler telemetry example, but it can be applied to the monitoring tool your team uses.
Using the Angular CLI, we will create a new interceptor:
ng g interceptor telemetry/telemetry
In the file generated by the Angular CLI, we will develop our interceptor:
@Injectable()
export class TelemetryInterceptor implements HttpInterceptor {
intercept(
request: HttpRequest<unknown>,
next: HttpHandler
): Observable<HttpEvent<unknown>> {
if (request.headers.get(‘X-TELEMETRY’) !== ‘true’) {
return next.handle(request);
}
const started = Date.now();
return next.handle(request).pipe(
finalize(() => {
const elapsed = Date.now() – started;
const message = `${request.method} “${request.urlWithParams}” in ${elapsed} ms.`;
console.log(message);
})
);
}
}
To illustrate the ability to customize an interceptor, we agree that telemetry will only be used if the request made has a custom header called X-TELEMETRY, and right at the beginning of the function, we do this verification.
As we did in the loader example, we used the finalize operator to measure the performance of the request in a simplified way and presented it in console.log. You could put your telemetry provider call or even your custom backend here.
To exemplify, we use console.log to show the information. As in the other sections, we need to configure the interceptor in the main AppModule module:
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: TelemetryInterceptor,
multi: true,
},
],
Finally, in the ExerciseSetsService service, we will send the customized header to carry out the telemetry of this request only:
getInitialList(): Observable<ExerciseSetListAPI> {
const headers = new HttpHeaders().set(‘X-TELEMETRY’, ‘true’);
return this.httpClient.get<ExerciseSetListAPI>(this.url, { headers });
}
Header passing is a way to configure an interceptor to behave differently depending on the situation.
Running our project, we can see the messages in the browser log:
GET “http://localhost:3000/diary” in 5 ms.
telemetry.interceptor.ts:25:16
With this development, HTTP requests with the configured header will be logged in console.log. You can replace this interceptor with an integration to a telemetry service, improving the monitoring of your application.
Summary
In this chapter, we explored the interceptor feature in Angular and the possibilities that this feature can give our team. We learned how to attach the authentication token to the requests without having to change all the services in our project. We also worked on changing the URL of the request, making our project more flexible to its execution environment.
We also improved our users’ experience by creating a loader in case their internet is slow and notifying them on the screen when a new entry is registered in their gym diary. Finally, we created a simple example of telemetry using a custom header to give the team the ability to select which requests are telemetry capable.
In the next chapter, we’ll explore RxJS, the most powerful library in the Angular utility belt.