Performance buckets allow users to define buckets, and link them to various server functions. Every time one of these functions is invoked, the server collects statistical data and adds it to the bucket. For example, "send-cgi" and "NSServletService" are functions used to serve the CGI and Java servlet requests respectively. You can either define two buckets to maintain separate counters for CGI and servlet requests, or create one bucket that counts requests for both types of dynamic content. The cost collecting this information is little and impact on the server performance is negligible. This information can later be accessed using The perfdump Utility.
The following information is stored in a bucket:
The following buckets are pre-defined by the server:
Configuration
All the configuration information for performance buckets is specified in the obj.conf file. By default the feature is disabled. To enable performance measurement add the following line in obj.conf file:
The following examples show how to define new buckets.
Init fn="define-perf-bucket" name="acl-bucket" description="ACL bucket"
Init fn="define-perf-bucket" name="file-bucket" description="Non-cached
responses"
Init fn="define-perf-bucket" name="cgi-bucket" description="CGI Stats"
The prior example creates three buckets: acl-bucket, file-bucket, and cgi-bucket. To associate these buckets with functions, add bucket=bucket-name in front of the function in the obj.conf file for which you wish to measure performance.
PathCheck fn="check-acl" acl="default" bucket="acl-bucket"
Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-
file" bucket="file-bucket"
<Object name="cgi">
ObjectType fn="force-type" type="magnus-internal/cgi"
Service fn="send-cgi" bucket="cgi-bucket"
</Object>
Performance Report
The server statistics in buckets can be accessed using The perfdump Utility. The performance buckets information is located in the last section of the report that perfdump returns. To enable reports on performance buckets, complete the following steps:
Define an extension for the performance bucket report. Add the following line to the mime.types file:
Associate the type you declared in mime.types with the service-dump function in the obj.conf file:
Use the URL http://server_name:port_number/.perf to view the performance report.
Note.
You must include a period (.) before the extension you defined in the mime.types file (in this case, .perf).
The report contains the following information: