F10 5/18/2007 11:15:00 AM "C HALLENGES IN P ERFORMANCE T ESTING - - PDF document

f10
SMART_READER_LITE
LIVE PREVIEW

F10 5/18/2007 11:15:00 AM "C HALLENGES IN P ERFORMANCE T ESTING - - PDF document

BIO PRESENTATION PAPER F10 5/18/2007 11:15:00 AM "C HALLENGES IN P ERFORMANCE T ESTING OF AJAX A PPLICATIONS " Rajendra Gokhale Aztecsoft International Conference On Software Test Analysis And Review May 14-18, 2007 Orlando, FL


slide-1
SLIDE 1

BIO PRESENTATION PAPER International Conference On Software Test Analysis And Review May 14-18, 2007 Orlando, FL USA

F10

5/18/2007 11:15:00 AM

"CHALLENGES IN PERFORMANCE TESTING OF AJAX APPLICATIONS"

Rajendra Gokhale Aztecsoft

slide-2
SLIDE 2

Rajendra Gokhale Rajendra Gokhale

Rajendra Gokhale currently heads the Research Division at Aztecsoft-Itest, the independent testing services division of Aztecsoft (http://www.aztecsoft.com). He has

  • ver twenty years of experience in software development and testing. His current work

involves researching issues in the areas of Security and Performance Testing of Web- based applications. He holds a Masters degree in Computer Science and Engineering from I.I.T. Bombay.

slide-3
SLIDE 3

Research and Development

Performance Performance Testing for AJAX Testing for AJAX Applications Applications

  • Rajendra Gokhale
slide-4
SLIDE 4

Agenda Agenda

  • Performance testing of traditional web based

applications

  • How AJAX applications differ from traditional web

applications

  • Google Suggest as an example AJAX application
  • Special challenges in performance testing AJAX

applications

http:/ / itest.aztecsoft.com

Slide 2

slide-5
SLIDE 5

Performance Testing Phases Performance Testing Phases

Designing Test Scenarios Designing Test Scenarios Performance requirements and goals Performance requirements and goals Needs Analysis and Technical Review Needs Analysis and Technical Review Phase 2

PT Execution Phase

Phase 2

PT Execution Phase

Workload Distribution Workload Distribution Infrastructure requirements Infrastructure requirements Phase1

PT Strategy Planning Phase

Phase1

PT Strategy Planning Phase

Data generation Data generation Scenario Scripting Scenario Scripting Lab setup Lab setup Test execution Test execution Monitoring and Analysis Monitoring and Analysis Tool Selection Tool Selection Reporting Reporting

slide-6
SLIDE 6

Phase 1: Performance Test Strategy Planning Phase 1: Performance Test Strategy Planning

  • Needs Analysis
  • Technical review of application
  • Definition of application's Performance Requirements

and Goals

  • High level PT road map (Planning)

– Designing Test scenarios – Workload Distribution – Data Generation Needs – Test Tool Selection – Monitoring and Reporting Needs

  • Infrastructure Requirements and Environment
slide-7
SLIDE 7

Phase 2: Performance Test Execution Phase Phase 2: Performance Test Execution Phase

  • Lab setup
  • Designing/ Creating PT Scripts

– Scripting/ coding

  • Data Generation
  • Test Execution

– Test script management/ test suite/ Harness + version control – Baseline and Benchmark tests

  • Monitoring and Analysis

– Results analysis – Reporting – Performance Deliverables

slide-8
SLIDE 8

Traditional Web Applications vs. AJAX Apps Traditional Web Applications vs. AJAX Apps

slide-9
SLIDE 9

User Activity

Data Transmission

Server Side Processing User Activity

D a t a T r a n s m i s s i

  • n

Server Side Processing User Activity

CLIENT TIME SERVER

Traditional Request Response Model (S ynchronous) Traditional Request Response Model (S ynchronous)

Data Transmission D a t a T r a n s m i s s i

  • n
slide-10
SLIDE 10

User Activity Server Side Processing User Activity Server Side Processing User Activity

CLIENT TIME SERVER

Input Display Input Display Input Display

AJAX Engine (Client Side Processing) Browser UI

AJAX Request Response Model (Asynchronous) AJAX Request Response Model (Asynchronous)

Data Transmission D a t a T r a n s m i s s i

  • n

Data Transmission D a t a T r a n s m i s s i

  • n
slide-11
SLIDE 11

Traditional Web Applications vs. AJAX Apps Traditional Web Applications vs. AJAX Apps… …

The response is interpreted by AJAX engine to update the DOM Response results in a complete page reload Requests for complete web-pages typically interspersed with many AJAX requests Browser-server interaction consists

  • f requests for complete pages

Requests happen asynchronously – not triggered by user action Requests are triggered by explicit user actions

AJAX application Traditional Application

slide-12
SLIDE 12

Google S uggest Google S uggest – – A Case S tudy A Case S tudy

  • New interface to well known Google Search engine
  • Application guesses what user is intending to type and
  • ffers suggestions in real time
  • Example: as one types "bass," “Google Suggest” might
  • ffer a list of completions that include "bass shoes" or

"bass guitar".

slide-13
SLIDE 13

Google S uggest Google S uggest … …

slide-14
SLIDE 14

Key Implementation Details of Google S uggest Key Implementation Details of Google S uggest

  • Asynchronous requests for phrase completions are sent

to the server at regular time intervals

  • The time interval between these requests is determined

dynamically and is a function of the latency observed by the client

  • No request is sent if the user has not typed anything

since the last request was sent

  • The results obtained dynamically are cached (useful

when the user erases something he has typed)

slide-15
SLIDE 15

Challenges in Performance Testing of AJAX Application Challenges in Performance Testing of AJAX Application

  • Definition of Performance Goals and Metrics
  • User Modeling
  • Scripting and Load Simulation
slide-16
SLIDE 16

Impact of AJAX on PT Phases Impact of AJAX on PT Phases

Designing Test Scenarios Designing Test Scenarios Perform ance requirem ents/ goals Perform ance requirem ents/ goals Needs Analysis and Technical Review Needs Analysis and Technical Review Phase 2

PT Execution Phase

Phase 2

PT Execution Phase

W orkload Distribution W orkload Distribution Infrastructure requirements Infrastructure requirements Phase1

PT Strategy Planning Phase

Phase1

PT Strategy Planning Phase

Data generation Data generation Scenario Scripting Scenario Scripting Lab setup Lab setup Test execution Test execution Monitoring and Analysis Monitoring and Analysis Tool Selection Tool Selection Reporting Reporting

slide-17
SLIDE 17

How AJAX impacts Performance Goals and Metrics How AJAX impacts Performance Goals and Metrics

  • Performance measurement metrics for AJAX

applications different from traditional applications

  • Widely used traditional measures for web applications

may be meaningless

  • Some performance goals (and metrics) relevant for

AJAX applications inapplicable for non-Ajax applications

– Optimization of AJAX engine – Measuring the Cross-browser performance

slide-18
SLIDE 18

Google S uggest vs. Vanilla Google Google S uggest vs. Vanilla Google

  • Performance Goals

– Google (Vanilla)

  • Check if server can handle ‘M’ search requests per seconds with

average response time for each query not exceeding ‘x’ seconds

– Google Suggest

  • Check if server can handle ‘M’ search requests per seconds with

average response time for each query not exceeding ‘x’ seconds

  • Optimize AJAX engine so that it does not make excessive demands
  • n the server, client or network
slide-19
SLIDE 19

How AJAX impacts User Modeling How AJAX impacts User Modeling

  • Need to factor in more variables when modeling the

load on AJAX application

– Google (Vanilla)

  • average number of searches performed by a typical user in a given

duration of time

– Google Suggest

  • average number of searches performed by a typical user in a given

duration of time

  • average length of search strings/ search string length distribution?

(longer strings = more # intermediate Ajax requests)

  • response time distribution
slide-20
SLIDE 20

S cri p ting an d Load S i m u lation S cri p ting an d Load S i m u lation

  • Script designers need to gain good understanding of the

AJAX engine implementation

  • Debugging test scripts is harder
  • How to simulate AJAX engine?
  • Simulation of the AJAX engine involves hard design

choices

– Heavy Model – Light Model

slide-21
SLIDE 21

Google S uggest vs. Vanilla Google Google S uggest vs. Vanilla Google

  • Developing the script for “Vanilla Google” was fairly

straightforward

  • Implementing corresponding scripts for “Google Select”

was much harder, primarily because

– involved understand the complex algorithms for determining request frequencies – re-implementing the same algorithm

  • Developing test scripts for “Google Select” involved

three tim es as much effort required for “Vanilla Google”.

slide-22
SLIDE 22

THE END THE END

slide-23
SLIDE 23

www.aztecsoft.com

1

Performance Testing for AJAX- based Applications

Rajendra Gokhale and Budhaditya Das Aztecsoft-itest Pune, India November 19th, 2006

slide-24
SLIDE 24

www.aztecsoft.com

2

Table of Contents

Abstract...................................................................................................................................... 3

INTRODUCTION ........................................................................................................................................... 4 HOW AN AJAX APPLICATION DIFFERS FROM A NORMAL WEB APPLICATION............................................. 4 GOOGLE SUGGEST – A CASE STUDY .......................................................................................................... 8 CHALLENGES IN PERFORMANCE TESTING AJAX APPLICATIONS................................................................ 9

Definition of Performance Goals and Metrics....................................................................... 9 User Modeling ........................................................................................................................ 10 Scripting and Load Simulation............................................................................................. 12 Conclusion ............................................................................................................................... 14 References................................................................................................................................ 15

slide-25
SLIDE 25

www.aztecsoft.com

3

Abstract

The AJAX model of development for web applications has rapidly gained a lot of popularity because of its promise of bringing the richness and responsiveness of desktop applications to the web. AJAX implementations are fundamentally different from other web implementations in two respects - they make asynchronous requests for parts of the web page. Techniques routinely used for performance testing of traditional web applications need to be modified and enhanced to suit the needs of AJAX-based applications. Using Google's "Google Select" service as a case study we examine the unique challenges of carrying out performance testing

  • f AJAX-based applications and offer suggestions for overcoming them.
slide-26
SLIDE 26

www.aztecsoft.com

4

INTRODUCTION

AJAX (Asynchronous Javascript and XML) is an approach to web programming that has been enjoying great popularity ever since it was used by Google for many of its applications, notably “Google Suggest” and “Google Maps”. There has been a lot of discussion about a number of issues related to AJAX including

  • tools and techniques for implementing AJAX (e.g. Ruby on Rails, DWR, Prototype,

Sajax, Ajax.net) [1,3]

  • business case for using AJAX [2]
  • usability of web applications using AJAX [5]
  • ptimizing network bandwidth utilization using AJAX for application development[6]

Considering that one of the key drivers for the rapid adoption of AJAX has been its promise of superior performance, it is surprising that there has not been much discussion about performance testing for AJAX-based applications. When we studied this in some detail, we found that there are indeed a number of unique issues and challenges associated with doing Performance testing of applications built using AJAX. Using the “Google Suggest” application as a case study, we explore these challenges in detail and offer suggestions on how they could be overcome.

HOW AN AJAX APPLICATION DIFFERS FROM A NORMAL WEB APPLICATION

A typical web application works as follows:

  • User supplies input to browser (e.g. types in a URL, clicks on a hyperlink, submits a

form)

  • Browser sends a request for the URL to the server
  • Web server responds with a page
  • Browser sends more requests for embedded objects (e.g. images)
  • Browser renders the page (including embedded objects)
  • Browser waits for user’s next input and then goes back to the first step.
slide-27
SLIDE 27

www.aztecsoft.com

5

The key points to note here are:

  • The browser issues requests for entire pages and the entire page gets refreshed as a

result of this action

  • These requests occur as a direct consequence of user actions.

In contrast to this, Ajax applications make a number of asynchronous web requests for parts of the current webpage. These requests are issued by a piece of client-side code that is executed in the browser context. This client-side code is usually implemented in Javascript and is called the AJAX engine.

  • Fig. 1: Comparison of traditional web application with an AJAX-based web application
slide-28
SLIDE 28

www.aztecsoft.com

6

The following table summarizes the key differences between traditional and AJAX web applications: Traditional Application AJAX application Requests sent as a direct response to user actions Requests happen asynchronously at intervals determined by the AJAX engine Requests are typically in the form of forms that use the GET or POST method Application can use any form of request mechanism supported by the remote server (e.g. XMLHttpRequest) Browser-server interaction involves requests for complete pages Requests for complete web-pages are typically interspersed with many requests that serve to update parts of the already loaded page The response consists of an entire new page The response is a piece of data that is interpreted by the AJAX engine to update the current DOM 1 Table 1: Traditional Vs AJAX based web applications Done right, the AJAX approach can yield a number of important advantages:

  • Since the response does not contain the entire page, a smaller amount of data gets

transferred across the network thus resulting in better network utilization.

  • Instead of reloading an entire page, AJAX applications update only parts of the page,

thus improving the responsiveness of the application.

1 DOM: Document Object Model. See www.w3.org/DOM.

slide-29
SLIDE 29

www.aztecsoft.com

7

On the other hand, a badly designed/tuned AJAX application can have a counter-productive

  • effect. For example, an AJAX engine can send too many AJAX requests and increase, rather

than reduce the load on the network! It is therefore imperative that an AJAX application be put through a thorough performance testing cycle before it is released for general use. This automatically raises the question of how techniques traditionally used for carrying out Performance testing of web applications may need to be enhanced or modified for AJAX applications. We carried out a Performance testing exercise on a number of real-world applications and were able to abstract out a number of useful principles that we present in this paper using the popular “Google Suggest” application as a case study.

slide-30
SLIDE 30

www.aztecsoft.com

8

GOOGLE SUGGEST – A CASE STUDY

“Google Suggest” (http://www.google.com/webhp?complete=1) is a new interface to the well known Google Search engine (referred to in this paper as “Vanilla Google”). As one starts typing in the “Google Suggest” search textbox, the application guesses what the user is intending to type and offers suggestions in real time, even as the user is typing in the search

  • box. For example: as one types "bass," “Google Suggest” might offer a list of completions that

include "bass shoes" or "bass guitar". Similarly, when a user has typed in a part of a word such as "progr" “Google Suggest” might offer completions such as "programs," "progress", or "progressive." A user can choose any of the suggestions by scrolling up or down the list with the arrow keys or mouse. The result is that the user gets a desktop-like feel even when interacting with a web application! “Google Suggest Dissected” [4] contains a detailed discussion of how this functionality is implemented but we list below some key implementation details that are most relevant for our purpose:

  • Asynchronous requests for phrase completions are sent to the server at regular time

intervals.

  • The time interval between these requests is determined dynamically and is a function of

the latency observed by the specific client.

  • No request is sent if the user has not typed anything since the last request was sent.
  • The results obtained dynamically are cached. This comes in useful when the user

erases something he has typed, since the cached results can be reused thus saving some unnecessary requests to the server.

slide-31
SLIDE 31

www.aztecsoft.com

9

CHALLENGES IN PERFORMANCE TESTING AJAX APPLICATIONS

DEFI NI TI ON OF PERFORMANCE GOALS AND METRI CS

The goals, and therefore the metrics, for the performance testing of AJAX applications are not the same as those for traditional applications. Two of the most widely used traditional measures for web applications, “page views per unit time” and “clicks per minute”, are meaningless in an AJAX context. A user could theoretically be looking at the same page for hours on end without ever clicking any URL, submitting any form or refreshing the page. Although the user may have viewed just one page, he might have generated tens of thousands

  • f requests and may actually have been glued to the screen during this entire period! One

example of such an application might be a dashboard for monitoring a chemical plant. The dashboard could get updated at regular intervals without generating even a single page view

  • ver an extended period of time.

On the other hand, some performance goals (and metrics) that are relevant for AJAX applications are largely or completely inapplicable for non-Ajax applications.

  • Optimization of the AJAX engine: While traditional applications need to make sure

that all components at the server are properly designed, tuned and configured, in the AJAX application the AJAX engine acts like an intermediate client-side server. When a Google Select user, for example, enters a string in the search-box, the AJAX engine pre-fetches a certain number of words and phrases that are consistent with the text that the user has already entered. This allows the user to select a search item from the

  • ptions suggested by Google, thus saving typing effort and enhancing the user
  • experience. Great idea, but it introduces a few problems. The AJAX engine could

make too many requests and choke up the network and/or the web-server; or it could make too few requests and lag behind the user (especially if the user is a fast typist). It would therefore seem reasonable to vary the frequency of AJAX requests in “Google

slide-32
SLIDE 32

www.aztecsoft.com

10

Suggest” as a function of the network speed and the user’s typing abilities, in other words to optimize the AJAX engine. It must be noted that, while there are numerous dimensions that optimization may address (e.g. network utilization, number of computations on the client or server, responsiveness of application, etc.), whatever criteria are chosen, optimization of the AJAX engine is an important goal for any performance testing efforts for AJAX applications. In the context of “Google Suggest”, the performance tester could ask: “What is the function that correctly determines the frequency at which the AJAX engine should make an AJAX request, where the two inputs are (1)

  • bserved server-response times and (2) observed user typing speeds?”.

For the sake of optimization, the next question would be how to optimize that

  • function. The answer of course would depend on the application.
  • Measuring the Cross-platform performance of the AJAX application: In recent

years, performance tuning of browser-based applications has been at the server end, where most of the heavy lifting occurs. However, since the AJAX engine resides on the client, performance testing should be done not only to enable optimizing of the AJAX engine, but also to test the compatibility matrix of browsers, operating systems, client hardware, network topologies, and network speeds. For example, memory leaks in some browsers can cause AJAX applications to fail. In the “Google Suggest” context, one would need to carry out tests described in the previous bullet (AJAX engine optimization) on the entire matrix. In particular, one would need to make sure that the application behaves reasonably for different type of network speeds (LAN, Dialup, etc).

USER M ODELI NG

User modeling for AJAX applications is very different from that for normal applications. In normal applications one essentially records various scenarios, modifies them for use in a Load Test scenario (by actions such as randomizing the next request), and adds “User Think Times”. While this is undoubtedly an oversimplification, the point we wish to make here is that the only real impact of a user’s action is on the frequency with which the requests are sent. That is not

slide-33
SLIDE 33

www.aztecsoft.com

11

the case with AJAX applications. For example, even the contents of AJAX requests sent by “Google Select” will differ depending on whether the user is a slow or a fast typist! Other factors that impact this include:

  • network speed
  • speed of the browser’s rendering capabilities
  • nature of search strings used

Clearly, one needs to factor in many more variables when modeling the load on an AJAX application, which makes the process of load-modeling much more complex. We feel that one important element of performance test planning is the method for simulating this behavior. Should one adopt a simplistic approach and generate (say) an AJAX request at statically determined intervals or should one go all the way and try to accurately model a real-life scenario? This is not an easy question, depending as it does upon the nature of the

  • application. This question also crops up in performance testing for normal applications but is

much more acute here. Google Google Suggest What is the average number of searches performed by a typical user during the course of a day? What is the average number of searches performed by a typical user during the course

  • f a day?

What is the average length of search strings? (for longer strings the # intermediate Ajax requests would be more) What is the average typing speed of a typical user? E.g.: 10 % Fast (x words/sec) 70 % Medium (y words/sec) 30 % Slow (z words/sec) Response time distribution. 2

2 The Ajax engine dynamically determines the frequency of intermediate requests based on its

  • bserved response times. When response times are higher, it lowers the frequency of

responses, thereby reducing the overall number of requests sent in a given duration. It is therefore important to simulate this response time distribution accurately. Note that this is different from the Network Topology modeling carried out during routine performance testing.

slide-34
SLIDE 34

www.aztecsoft.com

12

Table 2: User Modeling: Google Vs Google Suggest

SCRI PTI NG AND LOAD SI MULATI ON

For most applications (apart from exceptions such as applications that use applets), load consists of a series of http requests that can often be statically determined at scripting time or easily configured at run-time. Things aren’t as simple when it comes to scripting for AJAX applications.

  • Script designers need to gain a deep understanding of the AJAX implementation:

While carrying out performance testing of traditional web applications, one can largely ignore the client-side code generated since it is primarily used for client-side rendering and validation and has no impact on the server performance. This is not the case in AJAX applications – in an AJAX application the client-side code has to be understood by the test team since that code plays an important role in determining the load that is

  • generated. For “Google Suggest”, the AJAX client consists of over 60 lines of

compressed Javascript, most of which needs to be faithfully reproduced in the test

  • scripts. It may be noted here that the compressed Javascript format is a format that is

designed to be very compact and as a consequence is thoroughly obfuscated for human readers.

  • Simulation of the AJAX engine involves hard design choices: An AJAX application

determines what requests to make and when to make them, based on the model embedded in the AJAX engine. This model needs to be reproduced when performance testing AJAX applications. There are two broad approaches that can be adopted – one can either embed the AJAX engine code into the test script in the form of a plug-in (the “heavy” model) or simulate it using the Load Testing tool’s scripting functionality (the “light” model). The test scripter has to decide which approach to take based on a number of factors:

  • Load Testing is carried out using a farm of machines and every machine in this

farm is used to simulate many “virtual users”. Load Testing tools achieve this by spawning a number of threads on a single machine. Each thread simulates the actions of one “virtual user”. This approach of using multiple threads to simulate multiple users on a single machine ordinarily works since each of these threads

slide-35
SLIDE 35

www.aztecsoft.com

13

is quite lightweight in nature. However that may not be true in case we used the “heavy” model for our AJAX test scripts and this may result in the load testing client itself becoming a bottleneck. Thus the approach of embedding the actual AJAX engine into the Load Testing script should be considered only in situations where this engine is very light-weight and does not make too many demands on the machine it is hosted on.

  • If the nature, mix and frequency of AJAX requests can be easily modeled, it may

make more sense to attempt to simulate the AJAX engine “by hand”. Since the AJAX engine can actually be viewed in the browser it is conceivable that even a third party could be able to achieve this (for example see “Google Suggest Dissected” [4] that describes how Chris Justus reverse engineered “Google Suggest”). In fact, in real world projects, such reverse-engineering may be unnecessary since the performance testing team would be working closely with the development team and would have access to knowledge about the AJAX engine’s implementation.

  • Debugging test scripts is harder: One question that a tester has to consider is

whether he is doing a simulation correctly. During the scripting phase, testers make use of a feature that most load testing tools offer – that of allowing their users to view the responses received from the server in the form of rendered HTML. However this is not feasible for AJAX applications since the response to an AJAX request cannot be natively rendered by the Load Test tool. More often than not, this response is coded data that has to be interpreted by the AJAX engine before acting upon it. As a result, the Load Testing tool is unable to visually simulate the results of the response as it can do for non-AJAX applications. Debugging test scripts for AJAX applications is therefore much harder. We attempted to gauge the degree of difficulty involved in creating test scripts for AJAX applications by actually creating performance testing scripts for both versions of the Google search engine using the load testing tool “Jakarta Jmeter” [9]. Developing the script for “Vanilla Google” was fairly straightforward – the script has to read the search strings from a file and fire random strings at well-defined intervals. In contrast, implementing the corresponding scripts

slide-36
SLIDE 36

www.aztecsoft.com

14

for “Google Select” was much harder, primarily because it involved re-implementing the complex algorithms for determining request frequencies. Developing the test scripts for “Google Select” involved three times as much effort as that required for “Vanilla Google”.

Conclusion

Our overall conclusion is that, although performance testing for AJAX applications is significantly more challenging than that for traditional applications, it is certainly practical to

  • attempt. For this to be successful there is a need for identifying the special challenges involved

and incorporating solutions in a well-designed methodology. We hope that some of the challenges highlighted in this paper may help in these efforts.

slide-37
SLIDE 37

www.aztecsoft.com

15

References

  • 1. http://www.adaptivepath.com/publications/essays/archives/000385.php. The original

article by Jesse James Garrett that popularized the term AJAX.

  • 2. http://www.developer.com/java/other/article.php/3554271. Good discussion of the

benefits of using AJAX, including the business case.

  • 3. http://www.onlamp.com/pub/a/onlamp/2005/06/09/rails_ajax.html. Describes “Ruby on

Rails”, a framework popular among AJAX developers.

  • 4. http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html.

“Google Suggest Dissected” - a good discussion on how “Google Select” is implemented (at the browser side).

  • 5. http://www.baekdal.com/articles/Usability/XMLHttpRequest-guidelines
  • Thomas

Baekdal’s usability guidelines for XMLHttpRequest.

  • 6. http://www.webperformanceinc.com/library/reports/AjaxBandwidth/index.html - “Using

AJAX to improve the Bandwidth Performance of Web Applications”, by Christopher L Merrill of Web Performance, Inc., published January 15, 2006..

  • 7. http://www.techweb.com/wire/showArticle.jhtml?articleID=165702733
  • 8. http://hinchcliffe.org/archive/2005/08/18/1675.aspx
  • 9. http://jakarta.apache.org/jmeter. The official site for the load testing tool “Jakarta

JMeter”.