Skip to content

MariuszKogut/dotnetpro-application-insights

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotnetpro-application-insights

This ready-to-use example demonstrates end-to-end tracing with Azure Application Insights. The frontend is created with TypeScript & React. The backend has two micro services and is built with .NET Core. Distributed tracing is enabled and works from end to end.

How to run

Please create an instance of Azure Application Insights and add your InstrumentationKey here

instrumentationKey: "xxx",

here

and finally here

Now you can run the application:

cd backend
dotnet restore
dotnet build

cd frontend
npm install
npm run start:all