Features: - Modular parser architecture for vendor-specific formats - Inspur/Kaytus parser supporting asset.json, devicefrusdr.log, component.log, idl.log, and syslog files - PCI Vendor/Device ID lookup for hardware identification - Web interface with tabs: Events, Sensors, Config, Serials, Firmware - Server specification summary with component grouping - Export to CSV, JSON, TXT formats - BMC alarm parsing from IDL logs (memory errors, PSU events, etc.) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
544 B
Go
15 lines
544 B
Go
// Package vendors imports all vendor parser modules
|
|
// Add new vendor imports here to register them
|
|
package vendors
|
|
|
|
import (
|
|
// Import vendor modules to trigger their init() registration
|
|
_ "git.mchus.pro/mchus/logpile/internal/parser/vendors/inspur"
|
|
|
|
// Future vendors:
|
|
// _ "git.mchus.pro/mchus/logpile/internal/parser/vendors/supermicro"
|
|
// _ "git.mchus.pro/mchus/logpile/internal/parser/vendors/dell"
|
|
// _ "git.mchus.pro/mchus/logpile/internal/parser/vendors/hpe"
|
|
// _ "git.mchus.pro/mchus/logpile/internal/parser/vendors/lenovo"
|
|
)
|