I am trying to profiler .NET Core application in linux environment.
Here, I have installed and configured .NET core agent in my Centos.
I given the environmental variable in service file as follows,
Environment=CORECLR_PROFILER={57e1aa68-2229-41aa-9931-a6e93bbc64d8} \ CORECLR_ENABLE_PROFILING=1 \ CORECLR_PROFILER_PATH=/opt/appdynamics/dotnet/libappdprofiler.so
Then restarted the app service and apache server.
To check appdynamics profiler installation by running the following command,
lsof -p 2268 | grep -i appd dotnet 2268 root mem REG 253,0 6443304 69595618 /opt/appdynamics/dotnet/libappdprofiler_glibc.so dotnet 2268 root mem REG 253,0 6776 69595628 /opt/appdynamics/dotnet/libappdprofiler.so
<2268> is my dotnet process id and confirmed profiler loaded successfully.
My question is...
We have given only one profiler path which is libappdprofiler.so, then How this file "libappdprofiler_glibc" is loading? What is the use of this file?
Thanks in advance.
... View more