Help build the future of open source observability software Open positions

Check out the open source projects we support Downloads

Grot cannot remember your choice unless you click the consent notice at the bottom.

Load testing tools: Open source considerations for homegrown solutions

Load testing tools: Open source considerations for homegrown solutions

30 Jan, 2024 10 min

This content was originally published on k6.io.
30 Jan 2024

People are spending an increasing amount of time on services like Google, Amazon, and Instagram. These well-engineered sites have set a high bar when it comes to user experience (UX), as people now expect every application they use to be fast and reliable. 

A great UX is crucial to the success of your app, which means that accurate and efficient load testing has never been more important. You need a powerful solution that not only handles load testing basics but also complex user scenarios and continuous performance testing.

If you’re looking to start doing load testing, then you’ll start by evaluating all the implementation options:

  • Open source software (OSS)
  • On-premises vendors
  • Software as a Service (SaaS)
  • A mix of OSS and SaaS

Many load testing tools, like Grafana k6, are open source and provide the option to store the testing results to various backends, which is why many software teams start building their own load testing solution.

Starting a basic load testing solution is easy, but developing a scalable solution for continuous performance testing can be harder.

In this blog, we’ll look at:

  • The risks and costs of building your own load testing solution
  • Features you should consider when implementing a load testing solution
  • Challenges during the various load testing stages
  • Outgrowing the initial solution

The risks and costs of building a load testing solution

We’ve seen companies like Facebook and GitLab create their own load testing solutions. But for most software teams, implementing load testing is another internal project that can end up with minimal functionality and additional maintenance burdens. Buying a SaaS product would seem like a better alternative to building a solution in-house. However, when deciding on building or buying, you should first assess your testing needs and organizational structure, and then ask yourself the following questions:

  • Who is going to use the testing solution and how are they going to use it?
  • What are the key features you need in your testing solution?
  • Do you have the time and budget to build a solution and the resources to maintain it?

In general, we recommend that you start with an open source load testing tool to build your proof of concept (POC). If you test frequently and your development process requires that you prepare for complex user scenarios, you should consider moving to a robust solution that handles more than basic testing. A robust load testing solution, whether built in-house or a commercial option, will allow you to go beyond the minimum testing requirements and expand across roles.

Companies often underestimate the domain expertise that goes into a proven load testing solution and how much work it takes to build a reliable platform. Although for engineering managers, the risks of building an internal developer tool are typically well known. For example, they know about the potential technical debt, building a minimum viable solution (MVP), lack of focus, and expected project delays.

Engineering managers should calculate the total cost of ownership (TCO) of both solutions — in-house and SaaS. However, the TCO and the risks to your organization are directly related to the complexity of your solution. Therefore, you should start your POC by figuring out what your testing needs are now and in the future.

Open source load testing tools: key features to consider

As we mentioned earlier, you should start with an open source load testing tool to build your POC. There are plenty of open source load testing tools on the market, each with their own strengths and weaknesses, but in general you should look for these features:

  • Easy to use APIs and CLI
  • The ability to write tests in developer-friendly languages, like JavaScript
  • Automated testing
  • High performance
  • Multiple choices for storage
  • Effortless scaling

Once your initial solution works well, you could then incorporate capabilities that go beyond basic load testing. But first, it’s very important to identify the teams that will use the tool. For example, QA testers, developers, site reliability engineers (SREs), and others will likely play a role in load testing for your organization.

You should leave the tool decision to the people who will actively develop the tests. They can then choose a load testing tool and envision the architecture of the testing solution. A minimum load testing solution should look something like this:

An architectural diagram shows k6 pointing to an terminal. On a separate line, k6 and a visualization layer point to storage.

The load testing tool is the core component of your load testing solution. You use it to run a test and visualize the results. Additionally, many open source load testing tools can send the results to a backend for you to create visualizations later with a third-party analytics tool.

A fully open source solution is a cost-effective choice and recommended if load testing is not yet an integral part of your development process. Once load testing becomes more frequent, however, teams usually outgrow the initial open source load testing tool because they need to:

  • Run large tests or distribute the test execution across multiple machines
  • Do continuous performance testing
  • Allow different roles to participate in the testing
  • Track and report app performance and reliability over time
  • Improve the solution’s reliability and usability

Let’s look at the considerations that need to be taken into account for each of the factors above as you consider the best load testing tool for your organization.

Scaling your load testing horizontally

You could run a large load test using a single machine, either fine-tuning its configuration or increasing the machine resources: CPU, memory, or network — also known as vertical scaling. However, depending on the type of load testing, a single machine might not reach your load test’s throughput goal. Or it could become overloaded, skewing your testing results making them appear inaccurate.

The solution is to scale the load tests horizontally, distributing the test execution across several machines — the load generators. This is the same strategy as running a test from multiple geographic locations simultaneously. Multiple machines — from different or the same locations — will be synchronized to scale the load test.

An architectural diagram shows k6 tests from different regions shipped to Grafana k6 Cloud, which is then sent to a visualization layer.

The main challenges of a scalable load testing architecture are server synchronization and database bottlenecks. Running a test on a single machine may be relatively easy but coordinating several distributed servers to execute the load test is not a trivial task.

Optionally, your team might need to run various tests concurrently, which requires additional implementation. Even today, when cloud providers have improved their services and APIs significantly, there are many challenges when implementing an architecture for running concurrent distributed tests.

Also, a large load test will likely produce a massive amount of data points. On the storage side, the database will likely become another bottleneck; even the best-performing time series database can struggle to store the results of a large load test. In this case, your team must choose a high-performing database, optimizing for this use case, and typically aggregating the data before storing it.

Continuous load testing

While some businesses might need testing for a particular event as a one-time activity, product teams want to ensure reliability as the application evolves.

Reliability metrics are defined in service level agreements and testing continuously is the most effective process to avoid breaching service level objectives (SLOs). The solution should help you to test regularly and adapt to your industry’s best practices.

The testing solution needs to integrate with CI/CD vendors as well as automation and scheduler tools. This is so you can easily configure the testing frequency and conditions defined in your testing strategy. When a meaningful reliability issue happens, the solution should alert your team to act quickly before the problem impacts your users.

A k6 dashboard shows permanence overview for a load test.

When you start testing frequently, having the ability to compare changes or interpret any trend is also important in helping your team make informed decisions faster. When building your own load testing solution, these abilities are often forgotten. Most open source load testing tools cannot compare different tests or analyze trends over time.

Collaborating across teams

Today, load testing is no longer an isolated QA activity, and delivering a first-class user experience is a team effort across the entire engineering organization. Your load testing solution is the central point for everyone participating in the testing process. And to build confidence in your load testing process, the solution must accommodate the different roles in your organization.

For example, your management team likely requires reports and a holistic view of your load testing, and engineers will need to drill into the data. Developers usually demand a powerful scripting language, while non-coders want to launch faster tests using intuitive UI.

An architectural diagram shows partners, community, IT managers, app developers, QA engineers, and SRE engineers connected to k6 Cloud.

Organizations often underestimate how a solution needs to grow as more roles start participating in testing processes.

Making your load testing solution reliable

Reliability and compliance are also aspects to consider for your load testing solution. Depending on the type of load testing you need to do or company requirements, you may need an enterprise-grade solution that provides:

  • 99.9% availability
  • Fast response times, in the milliseconds range
  • Comprehensive and delightful user experience
  • N+1 infrastructure redundancy

And don’t forget about compliance requirements:

  • Auditing who and when someone triggers a change

  • Policies to grant access to project members

  • Security policies for data encryption, retention, etc.

    An architectural diagram shows k6 connected to various requirements, including security, compliance, authentication and authorization, and reliability and usability.

Assessing the total cost of ownership

At Grafana Labs, we’ve dealt with all the challenges highlighted in this blog, from finding approaches for scalable and reliable testing to automating testing processes and meeting compliance requirements.

When software teams discover new and exciting open source technologies, they often decide to build an open source stack. However, we frequently find these software teams later switching to our SaaS solution after underestimating the requirements of their custom load testing solution and the total costs of managing it.

When planning the infrastructure and tools to support your solution, we suggest that you clearly define your medium-term requirements first. Next, you should consider the TCO and all the organizational impacts surrounding your choices:

  • Building engineering efforts
  • Software and infrastructure maintenance
  • Infrastructure expense
  • Business disruption and lost productivity
  • Expertise and support

In general, we recommend an in-house solution for organizations with basic and occasional load testing needs or large engineering resources. You should consider a SaaS option when you need a scalable team solution for frequent testing.

Go beyond basic load testing with Grafana Cloud k6

At Grafana Labs, we provide an open source load testing tool for developers. We also provide an enterprise-grade performance testing solution in the form of Grafana Cloud k6.

Grafana Cloud k6 incorporates the industry’s best practices, allowing you to easily get started with load and performance testing—all while using the Grafana dashboards and workflows you already know and love. Our easy-to-use hosted solution, which can be added to your existing Grafana Cloud stack, accelerates and automates the testing process, so you spend less time managing your testing infrastructure and more time building reliable applications.

Grafana Cloud k6 offers:

  • Scalability. We’ve made Grafana Cloud k6 scalable by running hundreds of machines at peak load to process the metric data volume.
  • Automation. We’ve built Grafana Cloud k6 with native support to automate your performance testing. When testing continuously, k6 adds valuable features like trending, test comparison, and notifications on threshold failures.
  • Collaboration. Your teams can collaborate more efficiently with Grafana Cloud k6. Our platform includes key collaboration features, such as role-based access control (RBAC), test concurrency, advanced sharing capabilities, and dashboards.
  • Rich insights. Our analytics UIs help you better understand your testing and run automatic analysis to quickly detect performance issues.
  • Integrations. Grafana Cloud k6 provides additional integrations for further test visualization, data correlation, and incident response.


Grafana Cloud is the easiest way to get started with metrics, logs, traces, dashboards, and more. We have a generous forever-free tier and plans for every use case. Sign up for free now!