Any idea what might be the problem to why currently our on premise CRM is slow. Below is the screenshot of network log while navigating through section and edit pages.
Other details:
1. It is using oracle DB
2. We monitored the application and db server while navigating through section and edit pages and the CPU usage is just hitting only 30%.
IIS logs for the period when issue occurred (C:\inetpub\logs\LogFiles\W3SVC<website number>)
Windows logs for the period when issue occurred
Website diagnostic information from procDumpLite utility
IMPORTANT: If you are using balancer or any other infrastructure to prevent fall-overs, it is necessary to provide the diagnostic data of all the nodes.
2. Launch the stored procedures to collect the diagnostic information in Database Server.
exec sp_collectBlockedProcess
exec sp_collectActiveProcess
Note: It is necessary to launch the following stored procedures in separate session and make sure they are running at the same time.
3. Export the recent records from the ActiveProcess and BlockedProcess to Excel sheet.
select * from ActiveProcess where [CollectedTimeStamp] > cast(getdate() as date)
select * from BlockedProcess where [CollectedTimeStamp] > cast(getdate() as date)
Export the Extended Events (MS SQL) or AWR Report (Oracle)
Analyze received information.
If after initial analysis you're still unable to find the reason of the slowness, please contact us at support@creatio.com and provide the information you've gathered.