Application Insights ist ein Features des Azure Monitors, das die live-Beobachtung von Web-Applikationen erlaubt. Wir können so die Performance überwachen und es als Hilfe zum Debugging verwenden.
https://docs.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview
Konfiguration Server
Die Konfiguration für den Server kann auf zwei Wege erfolgen:
...
Instruktionen für das manuelle aufsetzen und rund um Application Insights finden sich hier:
https://docslearn.microsoft.com/en-us/azure/azure-monitor/app/app-insights-overview-overview#how-to-use-application-insights
Konfiguration Client
Grundeinstellung
Die Konfiguration des Clients kann direkt über die Grundeinstellungen erfolgen. Der Konfigurations-Schlüssel ist Public:ApplicationInsight
der Wert muss dem ConnectionString der Application Insight Insights Instanz entsprechen. Dieser kann normalerweise direkt aus dem Portal von der Übersichtsseite kopiert werden.
Code
Wenn nicht in den Grundeinstellungen konfiguriert, dann kann Applications Insights auch im Code mit eingebunden werden.
In your index.ts
add the following lines:
Code Block |
---|
import { ApplicationInsights } from '@microsoft/applicationinsights-web';
import { ReactPlugin } from '@microsoft/applicationinsights-react-js';
import { createBrowserHistory } from 'history';
try {
const browserHistory = createBrowserHistory({ basename: '' });
const reactPlugin = new ReactPlugin();
const appInsights = new ApplicationInsights({ config: {
connectionString: 'InstrumentationKey=...;IngestionEndpoint=...',
extensions: [reactPlugin],
extensionConfig: {
[reactPlugin.identifier]: { history: browserHistory }
}
} });
appInsights.loadAppInsights();
appInsights.trackPageView();
} catch {
// NOP
}
|
The connection string can be copied from the Azure Portal.
Resources
See here for the official documentation.
See here for the REACT extension.