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
@@ -20,10 +19,7 @@ In the [NBomber v6.2.0 release](https://github.com/PragmaticFlow/NBomber/release
20
19
-[What's next](#whats-next)
21
20
22
21
## HTML Report improvements
23
-
24
-
// add LINK for New Html Report
25
-
26
-
One of the invisible but important changes in the new HTML Report is that it has been completely rewritten in TypeScript. For a long time, we used vanilla JavaScript with Vue, but over time it became difficult to manage complexity, reason about the code, and maintain correctness. Moving to TypeScript gives us type safety and makes future development more sustainable.
22
+
One of the invisible but important changes in the [new HTML Report](https://nbomber.com/assets/reports/html_report.html) is that it has been completely rewritten in TypeScript. For a long time, we used vanilla JavaScript with Vue, but over time it became difficult to manage complexity, reason about the code, and maintain correctness. Moving to TypeScript gives us type safety and makes future development more sustainable.
27
23
28
24
Now, let’s look at the visible improvements 🙂
29
25
@@ -128,7 +124,7 @@ Previously, creating a cluster required defining and loading a JSON Config file
128
124
}
129
125
```
130
126
131
-
You then had to load this configuration on each NBomber node to form a three-node cluster (1 Coordinator + 2 Agents):
127
+
You then had to load this configuration on each NBomber node to form a cluster (in our example, three-node cluster: 1 Coordinator + 2 Agents):
132
128
133
129
```bash
134
130
# start node 1
@@ -177,7 +173,7 @@ dotnet my-nbomber-test.dll \
177
173
--cluster-nats-url=nats://localhost
178
174
```
179
175
180
-
A full list of available CLI options can be found at the following link.
176
+
A full list of available CLI options can be found at the [following link](https://nbomber.com/docs/nbomber/cli).
181
177
182
178
### Simplification of Manual cluster mode
183
179
For **ManualCluster** mode — which provides more flexibility than **AutoCluster** by allowing explicit control over scenario placement — we introduced a small but important simplification.
@@ -285,7 +281,7 @@ This effectively enables integration with the vast majority of modern observabil
285
281
286
282
## What's next
287
283
288
-
1. We are planning to release a new version of **NBomber Studio** soon—hopefully in February. This release will include several exciting features such as Compare Runs and Trends.
284
+
1. We are planning to release a new version of [NBomber Studio](https://nbomber.com/docs/nbomber-studio/overview) soon—hopefully in February. This release will include several exciting features such as Compare Runs and Trends.
289
285
290
286
2. In parallel, we are finishing work on a highly anticipated feature for NBomber Studio: **Load Testing in K8s**. This will allow you to create and deploy load tests directly to Kubernetes from NBomber Studio, without requiring additional CI/CD jobs. We expect this to be released in late February or early March.
0 commit comments