Is there any good profiler which support Google App Engine? I need to capture each methods call and their object creation. I have checked JProfiler, but it not supported methods level profiling.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
One way to profile in Google App Engine is using the
AppstatsServlet.Add the following to your
web.xmland after perusing the pages that you want to profile, hit
http://yourappname.appspot.com/appstats/statswith your browser. However it’s profiling the API, but might be useful to you. In general object creation is orders of magnitude faster than API calls…Google documentation for Java AppStat.