MVC web service dosen't show dapper sql

APM Server version: 1.6.1:

Hello everyone.
We use Elastic.Apm and try to append it in our web service (ASP.NET MVC .NET Framework 4.7.2.)
And Elastic.Apm shows us only HTTP requests, why we don't see SQL requests?

AppSettings:

<add key="ElasticApm:ServiceName" value="***" />
<add key="ElasticApm:ServerUrls" value="***" />

WebConfig:

<modules>
      <add name="ElasticApmModule" type="Elastic.Apm.AspNetFullFramework.ElasticApmModule, Elastic.Apm.AspNetFullFramework" />
    </modules>

And global.asax:

protected void Application_Start()
        {
            if (Agent.IsConfigured) 
                Agent.Subscribe(new SqlClientDiagnosticSubscriber());
        }

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.