Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/next/javascript-api/jslib/utils/randomintbetween.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/next/javascript-api/jslib/utils/randomintbetween/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
randomIntBetween(min, max)
Function returns a random number between the specified range. The returned value is no lower than (and may possibly equal) min, and is no bigger than (and may possibly equal) max.
| Parameter | Type | Description |
|---|---|---|
| min | int | Lower-end bound. Inclusive |
| max | int | Upper-end bound. Inclusive |
Returns
| Type | Description |
|---|---|
| int | Random integer |
Example
import { sleep } from 'k6';
import { randomIntBetween } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js';
export default function () {
// code ...
sleep(randomIntBetween(1, 5)); // sleep between 1 and 5 seconds.
}Was this page helpful?
Related resources from Grafana Labs

