Profiler Auto Instrumentation for .net application

Hello Everyone

I have single node ELK cluster running on 8.18 . I want to test APM for that i have sample .net core application running on localhost:5005 . I want to instrument my application without touching the code . I am following below documentation.

Profiler Auto Intrumentation and Zero code change setup

I have download the .zip file and extract it in C: drive and set DOTNET_STARTUP_HOOKS=C:\elastic_apm_profiler_1.34.1-win-x64\ElasticApmAgentStartupHook.dll . But i am not able to see my application in kibana Observability

Hello Everyone ,

I am able to instrument my app i.e. on dotnet app . I was setting env variable in cmd and running the command in powershell so my app was not able to capture the env variable.

I resolved by configuring env variable in cmd

set ELASTIC_APM_SERVER_URL=http://192.168.1.7:8200
set ELASTIC_APM_SECRET_TOKEN=Wm8ENthMVqcCti1Voh8uz2Pi
set ELASTIC_APM_SERVICE_NAME=DOT_NET_APP

then i run the command dotnet run in same cmd shell. In the final i got the desired result.