Hi Team,
We have configured elastic APM Agent with our asp.net application successfully.
We have add below configuration in our web.config file:
<modules> <add name="ElasticApmModule" type="Elastic.Apm.AspNetFullFramework.ElasticApmModule, Elastic.Apm.AspNetFullFramework" /> </modules>
in app settings we have added below keys:
<add key="ElasticApm:ServerUrl" value="https://xxx-axxx.apm.xxx.azure.elastic-cloud.com" />' <add key="ElasticApm:SecretToken" value="ntCgzxxxiUNs" />
And in application start I have added below code
var agentComponents = ElasticApmModule.CreateAgentComponents();
Agent.Setup(agentComponents);
My application is working fine with the above configuration, but I am not able to see any log-related inputs in the Kibana log or dashboard. Just wanted to know that do we need any other settings to display these performance logs for the application on Kibana?
Please help me ASAP.