Skip to content

Tags: cong-or/hud

Tags

v0.5.3

Toggle v0.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #6 from passcod/patch-1

Fix frame-pointers cargo option

v0.5.2

Toggle v0.5.2's commit message
 chore: bump version to 0.5.2

v0.5.1

Toggle v0.5.1's commit message
chore: bump version to 0.5.1

v0.4.5

Toggle v0.4.5's commit message
feat: support custom Tokio worker thread names

  Auto-discover worker threads when the default tokio-runtime-w prefix
  finds nothing by scanning /proc for the largest thread group matching
  {name}-{N} patterns. Add --workers flag as explicit override. On
  failure, log all thread names with a suggested prefix.

  Add THREAD_NAME env var to demo-server for testing custom names.

v0.4.4

Toggle v0.4.4's commit message
fix: resolve clippy doc_markdown lint and run cargo fmt

v0.4.3

Toggle v0.4.3's commit message
chore: bump version to v0.4.3

v0.4.2

Toggle v0.4.2's commit message
chore: bump version to v0.4.2

v0.4.1

Toggle v0.4.1's commit message
chore: release v0.4.1 - improve headless docs

v0.4.0

Toggle v0.4.0's commit message
feat(tui): add rolling time window for live metrics

  Add --window <SECS> flag to show only data from the last N seconds.
  When load stops, metrics naturally decay to 0 instead of showing
  stale historical percentages.

  - Uses wall-clock time so window advances even without new events
  - Binary search (O(log n)) for efficient event filtering
  - Recomputes hotspots from filtered data when windowing enabled
  - Default: 0 (all data, existing behavior)

  Example: sudo hud my-app --window 30

  Also clarifies demo-server must use debug build for stack traces.