Menu
Open source

addTag( key, value )

ParameterTypeDescription
namestringTag name
valuestringTag value

Example

JavaScript
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/');
}