When you run gostress --formats html, you get a dark-themed, interactive report with charts, metrics, and diagnostic insights. This guide walks through every section so you know exactly what you're looking at.

1. Hero Section

The top of the report shows your test headline and configuration pills:

Tip: If actual duration is significantly longer than target, the server may be slow to close connections, or transport errors are extending the measurement window.

2. KPI Cards

Four summary metrics at a glance:

These numbers count up from zero when you open the report — a small animation, but it makes it easy to see which metrics are large vs small at a glance.

3. Reliability (Donut Chart)

The SVG donut chart visualizes the breakdown of your traffic:

The center shows your overall success rate percentage. Hover over the legend items to highlight each segment.

4. Latency Distribution

Horizontal bar chart showing your latency percentiles:

Key insight: If p99 is much larger than p50 (e.g., 10x), your system has tail latency issues — a small percentage of requests are significantly slower. This often points to garbage collection pauses, connection pool exhaustion, or queue buildup.

5. Status Codes

Bar chart + table showing every HTTP status code observed:

If you see unexpected codes (e.g., 429 Too Many Requests), that's a signal to adjust your --rps limit or reduce concurrency.

6. Transport Errors

Errors that happen before the server sends a response:

Below the chart, a diagnostic card explains what each error type means and provides contextual advice based on your actual error rate.

7. Throughput

Data transfer metrics:

A "Analysis" note below adapts its message based on whether you used rate limiting and how close you got to the target.

8. Configuration & Results Tables

Two detailed tables at the bottom:

These are useful for copy-pasting into reports or comparing across runs.

Exporting as PDF

Click the Export PDF button in the top-right corner of the report. This opens your browser's print dialog — select "Save as PDF" to generate a clean, print-optimized version with a white background and proper page breaks.

# Generate and open
gostress --url https://api.example.com --formats html
open report.html