Questions tagged [code-profiling]

Profiling is achieved by instrumenting either the program source code or its binary executable form using a tool called a Code profiler

19 questions
0
votes
0 answers

Reading CPU profile snapshot in Chrome DevTools: is it multiple calls or one?

I'm profiling an application and I'm not sure how should I interpret the call chart. As far as I understand if a bar is split into several ones on the next line, that means that the top function calls underlying functions several times. I mean, when…
kirilloid
  • 14,011
  • 6
  • 38
  • 52
0
votes
1 answer

How to install YaxGUI to work with tideways in Ubuntu?

I've just installed tideways (fork from xhprof), and found this GUI YaxGUI, the installation steps wasn't clear enough for me. Install your favourite mix of PHP and web server Install MySQL server Clone the project to some folder Map the sub…
0
votes
0 answers

Remote JVM profiling using API

JVisualVM can connect to a remote JVM through JMX. I need to collect CPU sampling data from remote JVMs the way JVisualVM does. Looks like JVisualVM is collecting sampling data from the exposed MBeans on remote JVMs. Which classes are relevant in…
RRM
  • 2,495
  • 29
  • 46
0
votes
0 answers

Is there a way to check if the javascript function has an callback or asynchronous operation?

Is there an API or package (built-in or third-party) which can take a string of javascript code (specifically a function for my case), profile the same and tell if there is any asynchronous operation or a callback in that method? For example, if…
gurvinder372
  • 66,980
  • 10
  • 72
  • 94
1
2