• Stars
    star
    22,905
  • Rank 933 (Top 0.02 %)
  • Language
    Go
  • License
    GNU Affero Genera...
  • Created about 8 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A modern load testing tool, using Go and JavaScript - https://k6.io

k6

Like unit testing, for performance

Modern load testing for developers and testers in the DevOps era.

Github release Build status Go Report Card Codecov branch
@k6_io on Twitter Slack channel

Download · Documentation · Community Forum


---


k6 is a modern load-testing tool, built on our years of experience in the performance and testing industries. It's built to be powerful, extensible, and full-featured. The key design goal is to provide the best developer experience.

Its core features are:

  • Configurable load generation. Even lower-end machines can simulate lots of traffic.
  • Tests as code. Reuse scripts, modularize logic, version control, and integrate tests with your CI.
  • A full-featured API. The scripting API is packed with features that help you simulate real application traffic.
  • An embedded JavaScript engine. The performance of Go, the scripting familiarity of JavaScript.
  • Multiple Protocol support. HTTP, WebSockets, gRPC, and more.
  • Large extension ecosystem. You can extend k6 to support your needs. And many people have already shared their extensions with the community!
  • Flexible metrics storage and visualization. Summary statistics or granular metrics, exported to the service of your choice.

This is what load testing looks like in the 21st century.

Example script

import http from "k6/http";
import { check, sleep } from "k6";

// Test configuration
export const options = {
  thresholds: {
    // Assert that 99% of requests finish within 3000ms.
    http_req_duration: ["p(99) < 3000"],
  },
  // Ramp the number of virtual users up and down
  stages: [
    { duration: "30s", target: 15 },
    { duration: "1m", target: 15 },
    { duration: "20s", target: 0 },
  ],
};

// Simulated user behavior
export default function () {
  let res = http.get("https://test-api.k6.io/public/crocodiles/1/");
  // Validate response status
  check(res, { "status was 200": (r) => r.status == 200 });
  sleep(1);
}

You can run scripts like this on the CLI, or in your CI, or across a Kubernetes cluster.

Documentation

The docs cover all aspects of using k6. Some highlights include:

  • Get Started. Install, run a test, inspect results.
  • HTTP requests. Have your virtual users use HTTP methods. Or, check the other Protocols.
  • Thresholds. Set goals for your test, and codify your SLOs.
  • Options. Configure your load, duration, TLS certificates, and much, much more.
  • Scenarios. Choose how to model your workload: open models, closed models, constant RPS, fixed iterations, and more.
  • Results output. Study, filter, and export your test results.
  • JavaScript API. Reference and examples of all k6 modules.
  • Extensions. Extend k6 for new protocols and use cases.

These links barely scratch the surface! If you're looking for conceptual information, you can read about Test types, Test strategies, or one of the many informative Blog posts.

Roadmap

Our team is dedicated to continuously improving and providing the best user experience possible. The public roadmap covers user-oriented features, UX improvements and JavaScript support that our team will focus on. Remember that timeframes and priorities may shift, but we believe it's important to share our vision.

We hope it provides a clear overview of our plans for future development. We welcome feedback, corrections, and suggestions via GitHub to make it more comprehensive, accessible, and valuable for the community.

Contribute

If you want to contribute or help with the development of k6, start by reading CONTRIBUTING.md. Before you start coding, it might be a good idea to first discuss your plans and implementation details with the k6 maintainers—especially when it comes to big changes and features. You can do this in the GitHub issue for the problem you're solving (create one if it doesn't exist).

Note: To disclose security issues, refer to SECURITY.md.

Support

To get help, report bugs, suggest features, and discuss k6 with others, refer to SUPPORT.md.

License

k6 is distributed under the AGPL-3.0 license.

More Repositories

1

grafana

The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
TypeScript
60,107
star
2

loki

Like Prometheus, but for logs.
Go
22,069
star
3

pyroscope

Continuous Profiling Platform. Debug performance issues down to a single line of code
C
9,361
star
4

mimir

Grafana Mimir provides horizontally scalable, highly available, multi-tenant, long-term storage for Prometheus.
Go
3,634
star
5

tempo

Grafana Tempo is a high volume, minimal dependency distributed tracing backend.
Go
3,561
star
6

oncall

Developer-friendly incident response with brilliant Slack integration
Python
3,179
star
7

tanka

Flexible, reusable and concise configuration for Kubernetes
Go
2,199
star
8

phlare

🔥 horizontally-scalable, highly-available, multi-tenant continuous profiling aggregation system
Go
2,059
star
9

grafana-zabbix

Zabbix plugin for Grafana dashboard
TypeScript
2,020
star
10

helm-charts

Smarty
1,484
star
11

agent

Vendor-neutral programmable observability pipelines.
Go
1,447
star
12

grafonnet-lib

Jsonnet library for generating Grafana dashboard files.
Jsonnet
1,079
star
13

beyla

eBPF-based autoinstrumentation of HTTP and HTTPS services
C
1,032
star
14

grafana-operator

An operator for Grafana that installs and manages Grafana instances, Dashboards and Datasources through Kubernetes/OpenShift CRs
Go
756
star
15

grafana-docker

Grafana docker container
Shell
638
star
16

metrictank

metrics2.0 based, multi-tenant timeseries store for Graphite and friends.
Go
623
star
17

faro-web-sdk

The Grafana Faro Web SDK, part of the Grafana Faro project, is a highly configurable web SDK for real user monitoring (RUM) that instruments browser frontend applications to capture observability signals. Frontend telemetry can then be correlated with backend and infrastructure data for full-stack observability.
TypeScript
623
star
18

grafana-infinity-datasource

CSV, JSON, GraphQL, XML and HTML datasource for grafana.
TypeScript
591
star
19

jsonnet-libs

Grafana Labs' Jsonnet libraries
Jsonnet
516
star
20

k6-operator

An operator for running distributed k6 tests.
Go
506
star
21

simple-json-datasource

Datasource that sends generic http requests to give url
JavaScript
502
star
22

awesome-k6

A curated list of awesome tools, content and projects using k6
493
star
23

carbon-relay-ng

Fast carbon relay+aggregator with admin interfaces for making changes online - production ready
Go
455
star
24

grizzly

A utility for managing Jsonnet dashboards against the Grafana API
Go
424
star
25

terraform-provider-grafana

Terraform Grafana provider
Go
391
star
26

grafana-image-renderer

A Grafana backend plugin that handles rendering of panels & dashboards to PNGs using headless browser (Chromium/Chrome)
TypeScript
335
star
27

dskit

Distributed systems kit
Go
316
star
28

grafana-kiosk

Kiosk Utility for Grafana
Go
314
star
29

xk6-browser

k6 extension that adds support for browser automation and end-to-end web testing via the Chrome Devtools Protocol
Go
310
star
30

worldmap-panel

Worldmap panel plugin for Grafana 3.0 that can be overlaid with circles for data points.
JavaScript
301
star
31

postman-to-k6

Converts Postman collections to k6 script code
JavaScript
286
star
32

xk6-dashboard

A k6 extension that makes k6 metrics available on a web-based dashboard.
HTML
278
star
33

grafana-json-datasource

A data source plugin for loading JSON APIs into Grafana.
TypeScript
261
star
34

k6-learn

JavaScript
255
star
35

k6-template-typescript

Template to use TypeScript with k6
TypeScript
250
star
36

grafonnet

Jsonnet library for generating Grafana dashboards.
Jsonnet
229
star
37

dashboard-linter

A tool to lint Grafana dashboards
Go
187
star
38

thema

A CUE-based framework for portable, evolvable schema
Go
185
star
39

tns

Observability Demo App
Jsonnet
185
star
40

intro-to-mltp

Introduction to Metrics, Logs, Traces and Profiles session companion code.
JavaScript
181
star
41

strava-datasource

Strava datasource for Grafana dashboard
TypeScript
171
star
42

xk6

Build k6 with extensions
Go
169
star
43

github-datasource

Grafana data source plugin using the Github API to retrieve and visualize Github data.
Go
169
star
44

grafana-plugin-sdk-go

A Go SDK for building backend plugins for Grafana
Go
165
star
45

jsonnet-language-server

A Language Server Protocol (LSP) server for Jsonnet (https://jsonnet.org)
Go
154
star
46

grafana-plugin-examples

Shell
152
star
47

django-saml2-auth

Django SAML2 Authentication Made Easy. Easily integrate with SAML2 SSO identity providers like Okta, Azure AD and others.
Python
151
star
48

cortex-tools

If you're using this tool with Grafana Mimir, please switch to "mimirtool" instead: https://github.com/grafana/mimir
Go
150
star
49

piechart-panel

Pie Chart Panel Plugin
JavaScript
150
star
50

grafana-plugin-repository

The plugin repository for plugins that are published on grafana.com.
JavaScript
147
star
51

mqtt-datasource

MQTT Datasource for Grafana allows streaming data from any MQTT broker running either locally or remotely.
Go
143
star
52

xk6-output-prometheus-remote

k6 extension to output real-time test metrics using Prometheus Remote Write.
Go
139
star
53

scribe

A tool for building elaborate CI pipelines using a familiar programming language
Go
124
star
54

kubernetes-diff-logger

Logs updates to Kubernetes Objects for storing and querying with Loki
Go
122
star
55

pyroscope-rs

Pyroscope Profiler for Rust. Profile your Rust applications.
Rust
119
star
56

synthetic-monitoring-agent

Synthetic Monitoring Agent
Go
118
star
57

har-to-k6

JSON config representation of K6 script
JavaScript
114
star
58

scenes

Build Grafana dashboards directly in your Grafana app plugins.
TypeScript
114
star
59

faro

Grafana Faro is a project for frontend application observability. It includes a highly configurable web SDK that instruments browser frontend applications to capture observability signals.
113
star
60

google-sheets-datasource

Load Google Sheets in grafana
Go
112
star
61

tutorials

A series of tutorials for helping you make the most out of Grafana.
Makefile
109
star
62

synthetic-monitoring-app

Synthetic Monitoring frontend application
TypeScript
107
star
63

grafana-api-golang-client

Grafana HTTP API Client for Go
Go
105
star
64

k6-action

k6 is now available as a GitHub Action
JavaScript
101
star
65

clickhouse-datasource

Grafana Plugin for ClickHouse
TypeScript
101
star
66

cuetsy

Experimental CUE->TypeScript exporter
Go
96
star
67

rollout-operator

Kubernetes Rollout Operator
Go
96
star
68

k8s-monitoring-helm

Shell
93
star
69

azure-monitor-datasource

Grafana data source for Azure Monitor/Application Insights (deprecated - now included in core Grafana)
TypeScript
92
star
70

dashboard-spec

Go
91
star
71

clock-panel

Clock Panel Plugin for Grafana
TypeScript
88
star
72

grafana-polystat-panel

D3-Based hexagon layout multi-stat panel
TypeScript
86
star
73

docker-otel-lgtm

Dockerfile
82
star
74

k6-docs

The k6 documentation website.
JavaScript
80
star
75

xk6-disruptor

Extension for injecting faults into k6 tests
Go
80
star
76

k6-template-es6

Template using Webpack and Babel to enable ES6 features in k6 tests
JavaScript
77
star
77

cortex-jsonnet

Deprecated: see https://github.com/grafana/mimir/tree/main/operations/mimir instead
Jsonnet
74
star
78

doom-datasource

Hackathon project
C
71
star
79

tutorial-environment

Environment for tutorial excercises
Go
70
star
80

pyroscope-go

This is the golang client integration for Pyroscope
Go
69
star
81

grafana-ansible-collection

grafana.grafana Ansible collection provides modules and roles for managing various resources on Grafana Cloud and roles to manage and deploy Grafana Agent and Grafana
Python
69
star
82

database-migrator

Code to export grafana.db (sqlite) to MySQL-compatible SQL file, to assist in migration of Grafana data to MySQL-compatible DB.
Shell
67
star
83

grafana-csv-datasource

A data source for loading CSV data into Grafana.
TypeScript
67
star
84

mimir-proxies

Proxies to help you ingest your metrics into Grafana Mimir.
Go
65
star
85

pyroscope-java

pyroscope java integration
Java
65
star
86

otel-profiling-go

Open Telemetry integration for Grafana Pyroscope and tracing solutions such as Grafana Tempo, Honeycomb, or Jaeger
Go
65
star
87

memo

easily save grafana annotations from slack mentions and the cli
Go
65
star
88

JPProf

Go Pprof but for Java runtime.
Java
65
star
89

grafana-starter-panel

A starter for Grafana panel plugins
TypeScript
65
star
90

xk6-sql

k6 extension to load test RDBMSs (PostgreSQL, MySQL, MS SQL and SQLite3)
Go
64
star
91

vscode-jsonnet

Full code support (formatting, highlighting, navigation, etc) for Jsonnet
JavaScript
64
star
92

jmeter-to-k6

Converts JMeter .jmx files to k6 JS code
JavaScript
63
star
93

xk6-distributed-tracing

A k6 extension for distributed tracing.
Go
62
star
94

github-to-es

GitHub Analytics With Elasticsearch And Grafana
JavaScript
54
star
95

opcua-datasource

An OPC UA datasource for reading from OPC UA servers (DA/HDA/AE) into Grafana directly
CSS
54
star
96

grafana-plugin-sdk-rust

Grafana Plugin SDK for Rust
Rust
53
star
97

xk6-kubernetes

Client extension for interacting with Kubernetes clusters from your k6 tests.
Go
52
star
98

regexp

Faster version of the Go regexp package
Go
51
star
99

influxdb-flux-datasource

Grafana datasource plugin for Flux (InfluxDB)
Go
51
star
100

xk6-output-influxdb

k6 extension to output real-time test metrics to an InfluxDB 2.x database.
Go
49
star