---
title: "addTag( key, value ) | Grafana k6 documentation"
description: "adds a tag to the session"
---

# addTag( key, value )

Expand table

| Parameter | Type   | Description |
|-----------|--------|-------------|
| name      | string | Tag name    |
| value     | string | Tag value   |

### Example

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';

const session = new Httpx({ baseURL: 'https://quickpizza.grafana.com' });

session.addTag('tagName', 'tagValue');
session.addTag('AnotherTagName', 'tagValue2');

export default function () {
  session.get('/');
}
```
