Systems | Development | Analytics | API | Testing

k6

Testing Serverless APIs on AWS

​​ Recently AWS made the new ARM processors for Lambda functions generally available. With that change Serverless functions now use Graviton2, said to offer better performance at lower cost. I built a sample API on AWS using API Gateway and Lambda, and I wrote two endpoints, one CPU-intensive (calculating Pi using Leibniz's formula), the other a typical data transfer endpoint (returning an arbitrary number of bytes). Two very different endpoints for my experiment.

Browser testing and API load testing in the same script with k6 (k6 Office Hours #35)

CEO Robin Gustafsson, Tom Miseur (Technical Specialist) and Nicole van der Hoeven (Developer Advocate) talk about xk6-browser, which allows browser testing in the same script as API load testing. We're really excited to demonstrate it and talk about why we think this is a great next step for k6.

Combine k6 OSS and Prometheus for better observability

k6 Cloud, our managed testing solution, supports Prometheus to store and correlate performance testing metrics within your observability stack since a while now. Announced at Grafana ObservabilityCON, we launched Prometheus support to k6 Open Source - our free, open, and extensible load testing tool. k6 OSS supports sending k6 metrics to multiple outputs such as InfluxDB, New Relic, StatsD, and more.

Introducing browser automation and end-to-end web testing with k6

We’re excited to launch xk6-browser at Grafana ObservabilityCON today, an extension to k6 adding support for browser automation via the Chrome Devtools Protocol (CDP). k6 was built because we weren’t satisfied with the developer experience offered by existing load testing solutions. We believe in shifting performance testing, and with it observability, to the left.

k6 load testing on Kubernetes using the k6 Operator, with Hans Knecht (k6 Office Hours #34)

Nicole van der Hoeven (Developer Advocate) is joined by Hans Knecht, Principal Cloud Engineer at Mission Lane, to talk about Hans's specific use case for k6, and how he does distributed load testing with it for free on a Kubernetes cluster using the k6 Operator.

Finding .NET Memory Leaks through Soak Testing

As you’re probably aware, C# is a modern, garbage collected language, which means you don’t have to take care of object disposal as you would in languages like C++. However, that doesn’t mean.NET engineers don’t face memory problems, such as memory leaks. In this post, we’ll walk you through the basics of memory leaks in.NET: what they are, how they occur, and why they matter.

Site Reliability Engineering and performance testing with Stephen Townshend (k6 Office Hours #32)

What's the difference between Site Reliability Engineering and performance testing? SRE and performance testing/engineering have a lot of overlap. Where does performance testing end and SRE begin? And what does this mean for people in those roles? To discuss this topic, we have three people with varying areas of expertise: Nicole van der Hoeven (k6) is a performance engineer, Stephen Townshend (IAG) has recently changed careers from performance to SRE, and Daniel González Lopes (k6) is an SRE who learned about performance testing when he joined k6.

How to install and use the k6 Cloud Grafana data source plugin

Are you looking to integrate k6 with Grafana? Here's how to install and use the k6 Cloud Grafana data source plugin, as demonstrated by Nicole van der Hoeven. This plugin recreates the k6 Cloud dashboards in Grafana and works with locally hosted instances of Grafana, Grafana Cloud, and Grafana in a Kubernetes cluster.

Supercharge your test script with a DSL

When someone new joins the company, they're encouraged to do what is called a "Week of Testing" - taking k6 for a spin and presenting your findings to the rest of the team. This article will show you how you can make your test scripts more readable and maintainable. To do that, I'll test a demo application with a custom DSL. DSL is short for a Domain Specific Language, and in this case, it allowed me to write meaningful code specific to our business requirements.