24 May 2019 01:55 PM - last edited on 11 Apr 2023 10:54 AM by Karolina_Linda
I want to take a count of No of pull and push requests executed by bitbucket. I have dynatrace integrated with the java server. Is there a way or a method which I can use to calculate that?
Solved! Go to Solution.
24 May 2019 05:05 PM
I'm not familiar with the internals of BitBucket, but I suggest you perform some user actions which cause pull and push activity, then under the Diagnostic Tools menu, use the CPU Profiler to explore CPU activity to see if you can determine a method that is invoked as part of push and/or pull operations. Once you've determined a Class.method, create a custom service for that method.
24 May 2019 05:34 PM
Thanks
1st thing i did was to enable jmx in bitbucket
and followed this process
https://confluence.atlassian.com/bitbucketserver/enabling-jmx-counters-for-performance-monitoring-77...
And using jconsole profiler i could get the class and method , which i have defined as "define java services" under custom service detection
Now i see the pull/push requests separate under the new custom service.
Thank you.