Getting exception while logging the log into the transaction tables with more than 3k requests
What did you try and what were you expecting? :
We tried with below code changes into program.cs file, but don't have luck still getting same exception.
1.
.UseKestrel(opt =>
{
opt.Limits.MinRequestBodyDataRate = null;
opt.Limits.MaxRequestBodySize = 83886080;
opt.Limits.KeepAliveTimeOut = TimeSpan.FromMinutes(10);
});
- Also we monitored Checkhealth endpoint into the dynatrace pointing to APIC endpoint as our application have migrated to APIM we have updated that enpoint to APIM
- The called Application from which we are consuming other api, for that called application we tried load testing with 100 ,1000 and 3000 requests for processing 100 and 1000 request we have not got any exceptions but by the time of processing 3000 requests we find same exception.
- We are suspecting the issue is coming from Dynatrace One Agent, but we are not sure where and what changes need to be done to resolve above exception