Hangfire.FluentNHibernateStorage launching problems

Developing an MVC application (VS2019, FW 4.7) using Hangfire.FluentNHibernateStorage (free version) with oracle. The application can’t run on win server 2019, it always gets the following error:
Faulting application name: w3wp.exe, version: 10.0.17763.1, time stamp: 0xcfdb13d8
Faulting module name: PerfMon64.dll, version: 8.0.13053.0, time stamp: 0x5a26da79
Exception code: 0xc0000409
Fault offset: 0x000000000013f68f
Faulting process id: 0x15f4
Faulting application start time: 0x01d7cca5ad9430b5
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: C:\Program Files\Microsoft Monitoring Agent\Agent\APMDOTNETAgent\V8.0.13053.0\PerfMon64.dll
Report Id: 106314dc-58ef-486b-ae5e-1e24b2fc749b
Faulting package full name:
Faulting package-relative application ID:

Google said it’s bacause of Windows Monitoring Agent service. So, I uninstalled it and application is able to run for now. But this is not an option because I can’t uninstall this service on the prod. Application is properly working on my development workstation under iis express and system iis because there’s no Windows Monitoring Agent.

Another one application with Hangfire (SQL Server) is working well everywhere.

What I missed?

Thanks!