| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
"Your bean graph has a story. WireDoctor reads it."
WireDoctor is a runtime diagnostic and architectural analysis tool for Spring Boot. Add one dependency — it hooks into the real, resolved ApplicationContext at startup and turns it into an interactive report, honest advice, and CI gates. Zero-intrusion, zero-dashboard-server, pure insights.
A real run against start.spring.io (Boot 4.1.x, 429 beans, 436 edges) on WireDoctor 1.1.4 — the cycle, the ghosts and the timings in the report are all genuinely from that app. View the full docs →
▶ Open this exact report live in your browser — no install needed.
Add the dependency — that's it. WireDoctor runs at startup, writes wiredoctor-report.html + wiredoctor-report.json, and prints a diagnostic summary to your logs.
Maven:
<dependency>
<groupId>io.github.ddsha441981</groupId>
<artifactId>wiredoctor-autoconfigure</artifactId>
<version>1.1.4</version>
</dependency>Gradle:
implementation 'io.github.ddsha441981:wiredoctor-autoconfigure:1.1.4'Want CI gates? Capture a baseline once, commit it, arm the gates:
./mvnw spring-boot:run \
-Dspring-boot.run.arguments="--wiredoctor.baseline=wiredoctor-baseline.json --wiredoctor.baseline-write=true"
git add wiredoctor-baseline.json && git commit -m "chore: WireDoctor baseline"# application-ci.properties
wiredoctor.baseline=wiredoctor-baseline.json
wiredoctor.fail-on=new-cycle,startup-time,slow-beanCommon knobs (wiredoctor.scan-packages, thresholds, output path, production kill-switch wiredoctor.enabled=false) are in the configuration reference.
The full test suite runs against this matrix in CI (compat.yml); the table below reflects what is actually green:
| Spring Boot | Java 17 | Java 21 | Java 25 |
|---|---|---|---|
| 2.7.x | ✅ | ✅ | ✅ |
| 3.3.x | ✅ | ✅ | ✅ |
| 3.5.x | ✅ | ✅ | ✅ |
| 4.0.x | ✅ | ✅ | ✅ |
Notes:
| Guide | What it covers |
|---|---|
| Report tour | Every tab of the HTML console, explained with real screenshots |
| Configuration reference | Every property, grouped by feature, with defaults |
| CI gating | Fail your PR on a new bean cycle — the full workflow |
| Performance gates | Startup-time and slow-bean gates, thresholds, noise tolerance |
| Upgrade Guard | Catching silent autoconfiguration changes across Boot upgrades |
| Ghost Detector | Passive candidates + opt-in first-touch tracking, and their trust postures |
| Thread Distribution | Per-thread bean map with donut chart (v1.1.0) |
| Startup Time Trend | trendHistory in baseline + trend chart with verdict bands (v1.1.3) |
| Security posture | What the reports expose, offline-only network behavior |
| Known Limitations | Honest heuristics and what the tool cannot guarantee |
Pre-generated sample reports (from real apps, including start.spring.io) are in sample/ — or view the start.spring.io report live without cloning anything.
Contributions are welcome — bug reports, docs, tests, and features. See CONTRIBUTING.md for build/test conventions and the zero-intrusion design posture. New here? Look for issues labelled good first issue.
Maintained by Deendayal Kumawat · LinkedIn · deendayal_kumawat@hotmail.com
Dual-licensed under MIT OR Apache-2.0 — pick whichever suits your project.
| Back | FazBrowse Home | New Git URL |