Giter VIP home page Giter VIP logo

gae_mini_profiler's Introduction

Google App Engine Mini Profiler

gae_mini_profiler is a quick drop-in WSGI app that provides ubiquitous profiling of your existing GAE projects. It exposes RPC statistics and CPU profiling output for users of your choosing on your production site. Only requests coming from users of your choosing will be profiled, and others will not suffer any performance degradation, so you can use this profiler to learn about production performance without stressing about slowing users down. See screenshots and features below.

This project is heavily inspired by the Stack Exchange team's impressive mini-profiler.

Play around with a demo App Engine applications with gae_mini_profiler enabled at http://mini-profiler.appspot.com.

All profiled pages have total milliseconds in corner, which can be expanded...


...to show more details...


...about remote procedure call performance...


...or CPU profiler output.


Choose between an instrumented CPU profiler (above) or a sampling profiler (below).


Ajax requests and redirects are also profiled and added to the corner of your page.


Any Python logging module output is also available for easy access.

  1. Download this repository's source and copy the gae_mini_profiler/ folder into your App Engine project's root directory.

  2. Add the following two handler definitions to app.yaml:

     handlers:
     - url: /gae_mini_profiler/static
       static_dir: gae_mini_profiler/static
     - url: /gae_mini_profiler/.*
       script: gae_mini_profiler.main.application
    
  3. Modify the WSGI application you want to profile by wrapping it with the gae_mini_profiler WSGI application.

     import gae_mini_profiler.profiler
     ...
     application = webapp.WSGIApplication([...])
     application = gae_mini_profiler.profiler.ProfilerWSGIMiddleware(application)
    
  4. Modify your template to include our javascript and stylesheets just before your ending body tag.

    There is a profiler_includes() function in gae_mini_profiler.templatetags that spits out the right code for these scripts and stylesheets.

    Using any template engine of your choice, call this function at the end of your template:

             ...
             {% profiler_includes %}
         </body>
     </html>
    

    Note that these resources will not be loaded on requests when the profiler is disabled, so you don't need to worry about extra HTTP requests slowing down your users.

    Using Django? You can register a simple_tag to expose this to your templates:

     register = template.create_template_register()
     @register.simple_tag
     def profiler_includes():
         return gae_mini_profiler.templatetags.profiler_includes()
    

    Using jinja2? You can expose this function to your templates easily:

     webapp2_extras.jinja2.default_config = {
         "globals": {
             "profiler_includes": gae_mini_profiler.templatetags.profiler_includes
         }
     }
    

    Using anything else to generate your HTML? Just find some way to spit the results of profiler_includes() into your HTML. Doesn't have to be anything fancy.

  5. You're all set! Now you just need to choose when you want to enable the profiler by overriding a simple function. By default it's enabled on the dev server and disabled in production. To enable it for App Engine admins in production, add the following to appengine_config.py:

     def gae_mini_profiler_should_profile_production():
             from google.appengine.api import users
             return users.is_current_user_admin()
    

    In appengine_config.py you can override both of the following...

     def gae_mini_profiler_should_profile_production(): pass
     def gae_mini_profiler_should_profile_development(): pass
    

    ...with any logic you want to choose when the profiler should be enabled.

  • Production profiling without impacting normal users
  • Easily profile all requests, including ajax calls
  • Summaries of RPC call types and their performance so you can quickly figure out whether datastore, memcache, or urlfetch is your bottleneck
  • Redirect chains are tracked -- quickly examine the profile of not just the currently rendered request, but any preceding request that issued a 302 redirect leading to the current page.
  • Share individual profile results with others by sending link
  • Duplicate RPC calls are flagged for easy spotting in case you're repeating memcache or datastore queries
  • Choose from either an instrumented or sampling CPU profiler to quickly figure out where your requests are spending time
  • jQuery must be included somewhere on your page.
  • (Optional) If you want the fancy slider selector for the Logs output, jQuery UI must also be included with its Slider plugin.

gae_mini_profiler is currently in production use at Khan Academy. If you make good use of it elsewhere, please lemme know.

  1. What's the license? MIT licensed. There is also code from the Chromium project's DevTools whose license is at static/chrome/inspector/devtools.html.

  2. I had my appstats_RECORD_FRACTION variable set to 0.1, which means only 10% of my queries were getting profiles generated. This meant that most of the time gae_mini_profiler was failing with a javascript error, because the appstats variable was null.

    If you are using appengine_config.py to customize Appstats behavior you should add this to the top of your "appstats_should_record" method.

def appstats_should_record(env):
        from gae_mini_profiler.config import should_profile
        if should_profile(env):
            return True

gae_mini_profiler's People

Contributors

kamens avatar benjaminjkraft avatar sophiebits avatar cdman avatar jlfwong avatar n-dream avatar darktable avatar bslatkin avatar rsamuelklatchko avatar csdigi avatar schettino72 avatar csilvers avatar dmnd avatar erkan-yilmaz avatar mcotton avatar passy avatar lipis avatar proppy avatar

Watchers

Eugene Karasev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.