Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
A
C
D
G
H
I
M
P
R
S
A
addChild(MiniProfiler.Profile)
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Add a child step to this step.
C
ca.jimr.gae.profiler
- package ca.jimr.gae.profiler
This package contains the MiniProfiler API.
ca.jimr.gae.profiler.resources
- package ca.jimr.gae.profiler.resources
This package contains the static resource loader, and the static resources themselves for the profiler UI.
close()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Step
Stop the profiling step.
com.google.appengine.tools.appstats
- package com.google.appengine.tools.appstats
This package contains a class that can extract Appstats data programmatically.
D
DATA_EXPIRY_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
destroy()
- Method in class ca.jimr.gae.profiler.
MiniProfilerFilter
doFilter(ServletRequest, ServletResponse, FilterChain)
- Method in class ca.jimr.gae.profiler.
MiniProfilerFilter
If profiling is supposed to occur for the current request, profile the request.
doGet(HttpServletRequest, HttpServletResponse)
- Method in class ca.jimr.gae.profiler.
MiniProfilerServlet
G
getAppstatsDataFor(String, Integer)
- Static method in class com.google.appengine.tools.appstats.
MiniProfilerAppstats
Get the Appstats data for the specified id.
getChildren()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get the child steps of this step.
getDepth()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get the depth of the step in the profiling tree.
getDuration()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get how long the step tool (nanoseconds).
getId()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
The id of the step.
getName()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get the name of the step.
getOffset()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get the step's offset from the start of profling (nanoseconds).
getResource(String, Map<String, String>)
- Method in class ca.jimr.gae.profiler.resources.
MiniProfilerResourceLoader
Get the specified resource (if it exists) and perform the specified string replacements on it.
getSelf()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Calculate the duration of this step, minus the duration of all the child steps.
getStart()
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Get when the step started (nanoseconds).
H
HTML_ID_PREFIX_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
I
INCLUDES_ATTRIBUTE
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
init(FilterConfig)
- Method in class ca.jimr.gae.profiler.
MiniProfilerFilter
init(ServletConfig)
- Method in class ca.jimr.gae.profiler.
MiniProfilerServlet
M
MEMCACHE_KEY_FORMAT_STRING
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
MEMCACHE_NAMESPACE
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
MiniProfiler
- Class in
ca.jimr.gae.profiler
Simple step instrumentation that can be used to profile Java code in the context of the
MiniProfilerFilter
.
MiniProfiler()
- Constructor for class ca.jimr.gae.profiler.
MiniProfiler
MiniProfiler.Profile
- Class in
ca.jimr.gae.profiler
Contains information about a profiling step
MiniProfiler.Profile(int, String)
- Constructor for class ca.jimr.gae.profiler.
MiniProfiler.Profile
MiniProfiler.Step
- Class in
ca.jimr.gae.profiler
Used to control the starting and stopping of profiling steps.
MiniProfiler.Step(MiniProfiler.Root, MiniProfiler.Profile)
- Constructor for class ca.jimr.gae.profiler.
MiniProfiler.Step
Create a step object.
MiniProfilerAppstats
- Class in
com.google.appengine.tools.appstats
Utility for programmatically getting Appstats data.
MiniProfilerAppstats()
- Constructor for class com.google.appengine.tools.appstats.
MiniProfilerAppstats
MiniProfilerFilter
- Class in
ca.jimr.gae.profiler
A Servlet filter that enables the
MiniProfiler
under certain conditions (which are configurable)
MiniProfilerFilter()
- Constructor for class ca.jimr.gae.profiler.
MiniProfilerFilter
MiniProfilerResourceLoader
- Class in
ca.jimr.gae.profiler.resources
Helper class that loads resources (and does basic string template replacement) on files in the classpath.
MiniProfilerResourceLoader()
- Constructor for class ca.jimr.gae.profiler.resources.
MiniProfilerResourceLoader
MiniProfilerServlet
- Class in
ca.jimr.gae.profiler
Servlet that: Returns profile information for a set of requests (in JSON format).
MiniProfilerServlet()
- Constructor for class ca.jimr.gae.profiler.
MiniProfilerServlet
P
PROFILE_SERVLET_URL_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
R
REQUEST_ID_ATTRIBUTE
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
REQUEST_ID_HEADER
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
REQUEST_ID_PARAM_REDIRECT
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
RESTRICT_TO_ADMINS_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
RESTRICT_TO_EMAILS_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
RESTRICT_TO_URLS_KEY
- Static variable in class ca.jimr.gae.profiler.
MiniProfilerFilter
S
setDepth(int)
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Set the depth of the step in the profiling tree.
setDuration(long)
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Set how long the step took (nanoseconds).
setOffset(long)
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Set the step's offset from the start of profiling (nanoseconds).
setStart(long)
- Method in class ca.jimr.gae.profiler.
MiniProfiler.Profile
Set when the step started (nanoseconds).
shouldProfile(String)
- Method in class ca.jimr.gae.profiler.
MiniProfilerFilter
Whether the specified URL should be profiled given the current configuration of the filter.
start()
- Static method in class ca.jimr.gae.profiler.
MiniProfiler
Start the profiler.
step(String)
- Static method in class ca.jimr.gae.profiler.
MiniProfiler
Start a profiling step.
stop()
- Static method in class ca.jimr.gae.profiler.
MiniProfiler
Stop the profiler.
A
C
D
G
H
I
M
P
R
S
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
Copyright © 2011-2013. All Rights Reserved.