No results for

Powered byAlgolia
⚠️ This documentation is outdated. Please visit grafana.com for the latest k6 documentation.📚

addTag( key, value )

ParameterTypeDescription
namestringTag name
valuestringTag value

Example

import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';
const session = new Httpx({ baseURL: 'https://test-api.k6.io' });
session.addTag('tagName', 'tagValue');
session.addTag('AnotherTagName', 'tagValue2');
export default function () {
session.get('/public/crocodiles/1/');
}