Sling provides a helpful functionality to track progress of requests being processed: The RequestProgressTracker which is available through the SlingHttpServletRequest.
This tool provides mechanims to record states of request processing and a simple mechanism to time periods of processing. By default Sling itself uses this tool to track progress through Sling like script resolution and calling scripts.
Scripts and servlets called during Sling's request processing may themselves use the RequestProgressTracker
to log their own processing.
Usually the data collected by the RequestProgressTracker
is just dropped or it may be visible for a certain number of recent requests on the Recent Requests page of the Web Console. When doing load tests, though, this Web Console page is of limited use because a lot more requests are handled than can be displayed in the Web Console.
This is where the Request Processing Analyzer comes in handy. When deployed as a bundle it registers as a request level servlet Filter with the Sling Main Servlet. Each request is logged in a special file (currently fixed at ${sling.home}/logs/requesttracker.txt
) with a header line provding core information on the request:
After that first line the complete data from the requests RequestProgressTracker
is dumped.
The Request Processing Analyzer is available through the Web Console in the Sling category to
requesttracker.txt
file as a plain text or ZIP-ed fileThe option to launch the Swing-based GUI is only available if the Sling application is not running in headless mode and if the Web Console is accessed on localhost, that is on the same host as the Sling instance is running.
requesttracker.txt
fileTo analyze the requesttracker.txt
file the Request Processing Analyzer module can also be used as a standalone Java application. Just start the module using the java
command:
$ java -jar org.apache.sling.reqanalyzer-0.0.1-SNAPSHOT.jar requesttracker.txt
The command supports two command line arguments:
After starting and parsing the file, a window is opened showing the core request information in simple table. This table can be sorted by any of the columns by clicking on the column title.
Clicking on any row opens a second window displaying the detail request progress information as recorded before with the RequestProgressTracker
.
The size, location, and the widths of the table columns are persisted with the Java Preferences API and thus when starting the application again, these settings are preserved.