To investigate performance problems related to Jira / Tfs requests please follow the instruction to gather additional logs.
Set
Web.config
propertyPerformanceTrackingViaETW
totrue
and restart the IIS.Download
PerfView
tool from GitHub.Find the PID (process id) of the
IIS Worker Process
(orIIS Express Worker Process
) process running the Synchronizer.Run the following command in the terminal. Argument
/focusProcess=
should be set to process id from point 3 (11704
in this example).Code Block .\PerfView.exe collect -OnlyProviders:"*Appfire-TFS4JIRA" /focusProcess=11704
While PerfView is running it will gather the Jira and Tfs request timingsrequests logs. We advise collecting the data for at least a few synchronization cycles. If you want to stop collecting the data click
Stop Collection
button:PerfViewData.etl.zip
has been created. It can be viewed with thePerfView
tool and sent to support for further investigation of performance issues.
...