惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - owenrumney/lazypprof: A keyboard-driven TUI for ...
rumno0 · 2026-04-26 · via Hacker News: Show HN

A keyboard-driven TUI for exploring Go pprof profiles. Faster than go tool pprof -http, no browser needed — works in any terminal, including over SSH.

Install

go install github.com/owenrumney/lazypprof/cmd/lazypprof@latest

Homebrew

brew tap owenrumney/tools
brew install --cask lazypprof

Or grab a binary from Releases.

Usage

# Load a profile from disk
lazypprof cpu.prof
lazypprof heap.pb.gz

# Diff two profiles (positive = regression, negative = improvement)
lazypprof base.prof current.prof

# Connect to a live service
lazypprof http://localhost:6060                      # CPU (default)
lazypprof -type heap http://localhost:6060            # heap
lazypprof -type allocs http://localhost:6060          # allocs
lazypprof -type goroutine http://localhost:6060       # goroutines (with state filtering)
lazypprof -type mutex http://localhost:6060           # mutex contention
lazypprof -type block http://localhost:6060           # blocking operations

# Custom poll interval
lazypprof -interval 3s -type allocs http://localhost:6060

# Auto-detect: if nothing is specified, probes localhost:6060
lazypprof

Profile types: cpu (default), heap, allocs, goroutine, mutex, block

Demo

File profile

prof file

Live service

live

Views

Top — functions ranked by cumulative value. Standard pprof top view. In diff mode, rows are coloured red (regression) or green (improvement) with delta columns.

Tree — collapsible call tree. Expand/collapse nodes, navigate with keyboard. Filter matches are highlighted and paths auto-expanded.

Flame — terminal-rendered flame graph. Zoom in/out, navigate frames. Filter matches are highlighted; non-matching frames are dimmed.

Goroutines — goroutines grouped by state (running, IO wait, select, etc). Drill into a state to see unique stacks with counts.

Keys

Key Action
tab Cycle views
s Cycle sample type
/ Filter by function name (regex)
esc Clear filter
[ Step back through history
] Step forward through history
p Pause/resume live updates
m Switch profile type (live mode)
? Help overlay
q Quit

Tree

Key Action
j/k ↑/↓ Navigate
l/→/enter Expand
h/← Collapse / parent
space Toggle
* Expand subtree
0 Collapse all

Flame

Key Action
h/j/k/l ←↓↑→ Navigate frames
enter Zoom in
backspace Zoom out
0 Reset zoom

Goroutines

Key Action
j/k ↑/↓ Navigate groups
g Cycle state filter
enter Drill into state
backspace Back to groups

Building

go build ./cmd/lazypprof

Test Service

A built-in test service generates realistic workload with pprof endpoints:

go run ./cmd/testservice
# then: lazypprof http://localhost:6060