metrics-lib 0.9.1

The fastest metrics library for Rust. Lock-free 0.6ns gauges, 18ns counters, timers, rate meters, async timing, adaptive sampling, and system health. Cross-platform with minimal dependencies.
Documentation
# Benchmarks and Performance Regression

This document explains how to run and interpret benchmarks for `metrics-lib`, how CI guards against performance regressions, and how to run the heavier chaos/longevity suites.

## Running Benchmarks

- Full run (higher confidence):
  ```bash
  cargo bench --bench metrics_bench --features meter
  ```
- Quick run (useful on laptops/PRs):
  ```bash
  cargo bench --bench metrics_bench --features meter -- -w 0.3 -m 1.0 -n 20
  # -w warmup (s), -m measurement (s), -n samples
  ```
- Results location:
  - Criterion HTML + JSON reports: `target/criterion/`
  - Open `target/criterion/report/index.html` for the overview

### Showing cycles/op in the GitHub Pages dashboard

The benchmarks viewer (`docs/benchmarks/main.js`) can derive and display a cycles-per-operation metric for contention benches if it knows the CPU frequency (in MHz).

Provide CPU MHz in any of these ways:

- Inject a global before loading `data.js`:
  ```html
  <script>window.CPU_MHZ = 3800; // 3.8 GHz CPU</script>
  ```
- Add a meta tag in the page head:
  ```html
  <meta name="cpu-mhz" content="3800">
  ```
- Populate `BENCHMARK_DATA.meta.cpu_mhz` in the data payload (advanced; set in CI generation step).

If present, the viewer appends derived rows with the suffix `.cycles` alongside contention benches, computed as `cycles/op = ns/op × cpu_mhz`.

### Trend callout on the dashboard

The viewer will display a small callout summarizing the latest trend for `rate.tick` and `rate.tick_n` if sufficient history is available. It looks for an element with `id="trend-note"`; if none exists, it auto-inserts a callout above the summary cards. No configuration is required.

## Comparing Results

- Using Criterion baselines:
  ```bash
  # Save a baseline from main
  cargo bench --bench metrics_bench --features meter -- --save-baseline main
  # Compare current working tree to baseline
  cargo bench --bench metrics_bench --features meter -- --baseline main
  ```

### Latest reference run

Latest local reference run (Windows x86_64, Rust stable, `cargo bench --bench metrics_bench --features meter`):

- `counter/increment`: 1.48 ns/op
- `gauge/set`: 0.40 ns/op
- `timer/record`: 3.17 ns/op
- `global_metrics/mixed_operations`: 151.58 ns/op

- Using `critcmp` (compare two directories or baselines):
  ```bash
  cargo install critcmp
  critcmp target/criterion /path/to/other/criterion
  ```

## CI Performance Guardrails

- PRs: a smoke Criterion pass runs with short durations and uploads `criterion-reports`.
- Pushes to `main`: results are analyzed by `benchmark-action/github-action-benchmark` and stored on `gh-pages` under `benchmark-data/`.
- Regressions beyond the alert threshold will fail the job and comment on PRs.

Notes:
- Ensure `gh-pages` exists and GitHub Pages is enabled if you want to keep result history.
- Thresholds can be tuned after we establish baseline variance.

## Chaos and Longevity Suites

These are heavy tests to validate concurrency correctness and long-term stability. They are gated behind the `bench-tests` feature and ignored by default to keep standard CI stable.

- Chaos tests:
  ```bash
  cargo test --features bench-tests -- --ignored --test chaos_tests
  ```

- Longevity tests (1B+ configurable via env):
  ```bash
  OPS=1000000000 cargo test --features bench-tests -- --ignored --test longevity_tests
  ```

CI-safe defaults automatically reduce operation counts when the `CI` env variable is present.

## Reducing Variance

On Linux self-hosted runners you can stabilize CPU frequency and reduce noise. See `CONTRIBUTING.md` → "Reducing Variance" for details.