Spring and Angular applications on Azure (7 Part Series)
1 Creating a Spring Boot and Angular application for Azure (1/7)
2 Creating and configuring Azure Web App and MySQL to host a Spring Boot application (2/7)
… 3 more parts…
3 Using Azure Pipelines to build, test and deploy a Spring Boot and Angular application (3/7)
4 Using Azure Application Insights with Spring Boot (4/7)
5 Using Azure Application Insights with Angular (5/7)
6 Configuring Azure CDN to boost Angular performance (6/7)
7 Configuring Azure Redis Cache to boost Spring Boot performance (7/7)
This blog post is part of a series on “deploying a Spring Boot and Angular application on Azure”, here is the full list of posts:
- Creating a Spring Boot and Angular application for Azure (1/7)
- Creating and configuring Azure Web App and MySQL to host a Spring Boot application (2/7)
- Using Azure Pipelines to build, test and deploy a Spring Boot and Angular application (3/7)
- Using Azure Application Insights with Spring Boot (4/7)
- Using Azure Application Insights with Angular (5/7)
- Configuring Azure CDN to boost Angular performance (6/7)
- Configuring Azure Redis Cache to boost Spring Boot performance (7/7)
Azure Application Insights and Angular
In the previous blog post, we configured Azure Application Insights with Spring Boot, so we could monitor our server-side application. But what about our client-side application? And how about doing joint dashboards, showing both server-side and client-side data, in order to better understand why our user feel that our application is slow?
We’re going to do all this in this blog post, by configuring our existing Application Insights instance to also monitor client-side data.
Installing Application Insights for Angular
First of all, be careful! There is a very popular and official applicationinsights-js library, and in you should not use it! This version is packaged as an AMD module, which will cause issues with our unit tests. There’s a new version, packaged as an UMD module, that will work everywhere, and which has a new (and better!) name: @microsoft/applicationinsights-web. At the time of this writing, nearly nobody uses this new and improved release, so we hope to change this thanks to this blog post!
First of all, install this library by doing npm i --save @microsoft/applicationinsights-web@2.0.0
.
Now we need to configure it, and please note that your Azure Application Insights instrumentation key will be public (but that shouldn’t cause any trouble):
private appInsights = new ApplicationInsights({
config: {
instrumentationKey: 'a8aca698-844c-4515-9875-fb6b480e4fec'
}
});
// ...
this.appInsights.loadAppInsights();
Enter fullscreen mode Exit fullscreen mode
Then, in order to record what users do on the application, we have hooked this mechanism on the Angular Router: each time a route changes, an event will be sent to Azure Application Insights, so we can record what people are doing.
Here is the Angular service we created:
import { Injectable, OnInit } from '@angular/core';
import { ApplicationInsights } from '@microsoft/applicationinsights-web';
import { ActivatedRouteSnapshot, ResolveEnd, Router } from '@angular/router';
import { filter } from 'rxjs/operators';
import { Subscription } from 'rxjs';
@Injectable()
export class ApplicationInsightsService {
private routerSubscription: Subscription;
private appInsights = new ApplicationInsights({
config: {
instrumentationKey: 'a8aca698-844c-4515-9875-fb6b480e4fec'
}
});
constructor(private router: Router) {
this.appInsights.loadAppInsights();
this.routerSubscription = this.router.events.pipe(filter(event => event instanceof ResolveEnd)).subscribe((event: ResolveEnd) => {
const activatedComponent = this.getActivatedComponent(event.state.root);
if (activatedComponent) {
this.logPageView(`${activatedComponent.name} ${this.getRouteTemplate(event.state.root)}`, event.urlAfterRedirects);
}
});
}
setUserId(userId: string) {
this.appInsights.setAuthenticatedUserContext(userId);
}
clearUserId() {
this.appInsights.clearAuthenticatedUserContext();
}
logPageView(name?: string, uri?: string) {
this.appInsights.trackPageView({ name, uri });
}
private getActivatedComponent(snapshot: ActivatedRouteSnapshot): any {
if (snapshot.firstChild) {
return this.getActivatedComponent(snapshot.firstChild);
}
return snapshot.component;
}
private getRouteTemplate(snapshot: ActivatedRouteSnapshot): string {
let path = '';
if (snapshot.routeConfig) {
path += snapshot.routeConfig.path;
}
if (snapshot.firstChild) {
return path + this.getRouteTemplate(snapshot.firstChild);
}
return path;
}
}
Enter fullscreen mode Exit fullscreen mode
(You can see the whole file here)
Please note that we have created setUserId()
and clearUserId()
methods: we will use them when a user authenticates or logs out of the application, so we can better track what individuals are doing. We hooked those methods in the account.service.ts
file generated by JHipster, so we could directly use the account login.
Also, user data is sent when the browser window is closed, which is very good in production, but might be annoying in development. One interesting method to use is appInsights.flush();
, which will force the data to be sent. This could be used in development in our new Angular service, in order to test it more easily.
As this part required quite a lot code, check this commit to see all the details that we have changed to make this part work. Please note that we needed to mock the Azure Application Insights service in our tests, and this is why we needed to use the UMD module.
Using Application Insights to track users
As we are tracking user sessions as well as logins, we can have very detailed informations on our users’ behavior, and also better understand the performance issues of our application.
The first thing you will probably do is just to check users and sessions on your website:
But you’ll be able to do much more, for example you can check the flow of users in your application:
You will then be able to combine dashboards with data from the Spring Boot application, in order to better understand what your users do, and which issues they encounter.
This will lead us to our next two blog posts, on improving both client-side and server-side performance. Thanks to Azure Application Insights we will be able to make the right choices, and better understand if our performance tunings have the right impact.
Spring and Angular applications on Azure (7 Part Series)
1 Creating a Spring Boot and Angular application for Azure (1/7)
2 Creating and configuring Azure Web App and MySQL to host a Spring Boot application (2/7)
… 3 more parts…
3 Using Azure Pipelines to build, test and deploy a Spring Boot and Angular application (3/7)
4 Using Azure Application Insights with Spring Boot (4/7)
5 Using Azure Application Insights with Angular (5/7)
6 Configuring Azure CDN to boost Angular performance (6/7)
7 Configuring Azure Redis Cache to boost Spring Boot performance (7/7)
暂无评论内容