Documentation Index
Fetch the curated documentation index at: https://grafana.com/llms.txt
Fetch the complete documentation index at: https://grafana.com/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: https://grafana.com/docs/k6/next/javascript-api/jslib/utils/randomstring.md (append .md) or send Accept: text/markdown to https://grafana.com/docs/k6/next/javascript-api/jslib/utils/randomstring/. For the curated documentation index, use https://grafana.com/llms.txt. For the complete documentation index, use 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.
randomString(length, [charset])
Function returns a random string of a given length, optionally selected from a custom character set.
| Parameter | Type | Description |
|---|---|---|
| length | int | Length of the random string |
| charset (optional) | string | A customized list of characters |
Returns
| Type | Description |
|---|---|
| any | Random item(s) from the array of characters |
Example
import { randomString } from 'https://jslib.k6.io/k6-utils/1.2.0/index.js';
export default function () {
const randomFirstName = randomString(8);
console.log(`Hello, my first name is ${randomFirstName}`);
const randomLastName = randomString(10, `aeioubcdfghijpqrstuv`);
console.log(`Hello, my last name is ${randomLastName}`);
const randomCharacterWeighted = randomString(1, `AAAABBBCCD`);
console.log(`Chose a random character ${randomCharacterWeighted}`);
}Was this page helpful?
Related resources from Grafana Labs

