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/latest/javascript-api/k6/check.md (append .md) or send Accept: text/markdown to https://grafana.com/docs/k6/latest/javascript-api/k6/check/. For the curated documentation index, use https://grafana.com/llms.txt. For the complete documentation index, use https://grafana.com/llms-full.txt.
check( val, sets, [tags] )
Run checks on a value. A check is a test condition that can give a truthy or
falsy result. The sets parameter contains one or more checks, and the check()
function will return false if any of them fail.
Note that checks are not asserts in their traditional sense - a failed assertion will throw an error, while a check will always return with a pass or a failure. Failure conditions can then instead be controlled by thresholds, for more power and flexibility.
| Parameter | Type | Description |
|---|---|---|
| val | any | Value to test. |
| sets | object | Tests (checks) to run on the value. |
| tags (optional) | object | Extra tags to attach to metrics emitted. |
Returns
| Type | Description |
|---|---|
| boolean | true if all checks have succeeded, false otherwise. |
Examples
Using check() to verify that an HTTP response code was 200:
import http from 'k6/http';
import { check } from 'k6';
export default function () {
const res = http.get('https://quickpizza.grafana.com/');
check(res, {
'response code was 200': (res) => res.status == 200,
});
}Using check() with a custom tag to verify that an HTTP response code was 200 and that body was 1234 bytes. The checkOutput can be used for any condition in your script logic:
import http from 'k6/http';
import { check, fail } from 'k6';
export default function () {
const res = http.get('https://quickpizza.grafana.com/');
const checkOutput = check(
res,
{
'response code was 200': (res) => res.status == 200,
'body size was larger than 123 bytes': (res) => res.body.length > 123,
},
{ myTag: "I'm a tag" }
);
if (!checkOutput) {
fail('unexpected response');
}
}Was this page helpful?
Related resources from Grafana Labs

