2.8 KiB
2.8 KiB
02 — Architecture
Runtime stack
| Layer | Implementation |
|---|---|
| Language | Go 1.22+ |
| HTTP | net/http + http.ServeMux |
| UI | Embedded templates and static assets via go:embed |
| State | In-memory only |
| Build | CGO_ENABLED=0, single binary |
Default port: 8082
Code map
cmd/logpile/main.go entrypoint and CLI flags
internal/server/ HTTP handlers, jobs, upload/export flows
internal/collector/ live collection and Redfish replay
internal/analyzer/ shared analysis helpers
internal/parser/ archive extraction and parser dispatch
internal/exporter/ CSV and Reanimator conversion
internal/models/ stable data contracts
web/ embedded UI assets
Server state
internal/server.Server stores:
| Field | Purpose |
|---|---|
result |
Current AnalysisResult shown in UI and used by exports |
detectedVendor |
Parser/collector identity for the current dataset |
rawExport |
Reopenable raw-export package associated with current result |
jobManager |
Shared async job state for collect and convert flows |
collectors |
Registered live collectors (redfish, ipmi) |
convertOutput |
Temporary ZIP artifacts for batch convert downloads |
State is replaced only on successful upload or successful live collection. Failed or canceled jobs do not overwrite the previous dataset.
Main flows
Upload
POST /api/uploadreceives multipart fieldarchive- JSON inputs are checked for raw-export package or
AnalysisResultsnapshot - Non-JSON inputs go through
parser.BMCParser - Archive metadata is normalized onto
AnalysisResult - Result becomes the current in-memory dataset
Live collect
POST /api/collectvalidates request fields- Server creates an async job and returns
202 Accepted - Selected collector gathers raw data
- For Redfish, collector saves
raw_payloads.redfish_tree - Result is normalized, source metadata applied, and state replaced on success
Batch convert
POST /api/convertaccepts multiple files- Each supported file is analyzed independently
- Successful results are converted to Reanimator JSON
- Outputs are packaged into a temporary ZIP artifact
- Client polls job status and downloads the artifact when ready
Redfish design rule
Live Redfish collection and offline Redfish re-analysis must use the same replay path.
The collector first captures raw_payloads.redfish_tree, then the replay logic builds the normalized result.
PCI IDs lookup
Lookup order:
- Embedded
internal/parser/vendors/pciids/pci.ids ./pci.ids/usr/share/hwdata/pci.ids/usr/share/misc/pci.ids/opt/homebrew/share/pciids/pci.ids- Extra paths from
LOGPILE_PCI_IDS_PATH
Later sources override earlier ones for the same IDs.