You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/data/markdown/docs/02 javascript api/06 k6-execution.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,13 +76,13 @@ Control the test execution.
76
76
77
77
### vu
78
78
79
-
Meta information and execution details about the current vu and iteration.
79
+
Meta information and execution details about the current vu.
80
80
81
81
| Property | Type | Description |
82
82
|----------|------|-------------|
83
-
| iterationInInstance | integer | The identifier of the iteration in the current instance. |
84
-
| iterationInScenario | integer | The identifier of the iteration in the current scenario. |
85
-
| idInInstance | integer | The identifier of the VU across the instance. |
83
+
| iterationInInstance | integer | The identifier of the iteration in the current instance for this VU. This is only unique for current VU and this instance (if multiple instances). This keeps being aggregated if a given VU is reused between multiple scenarios. |
84
+
| iterationInScenario | integer | The identifier of the iteration in the current scenario for this VU. This is only unique for current VU and scenario it is currently executing. |
85
+
| idInInstance | integer | The identifier of the VU across the instance. Not unique across multiple instances. |
86
86
| idInTest | integer | The globally unique (across the whole test run) identifier of the VU. |
87
87
| tags | object | The map that gives control over [VU's Tags](/using-k6/tags-and-groups/#tags). The Tags will be included in every metric emitted by the VU and the Tags' state is maintained across different iterations of the same Scenario while the VU exists. Check how to use it in the [example](#tags) below. |
0 commit comments