mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 13:36:16 +01:00
- Introduce `Transport` interface to abstract WebSocket and SSH communication - Add generic `Data` field to `AgentResponse` for streamlined future endpoints - Maintain backward compatibility with legacy hubs and agents using typed fields - Unify fetch operations (SMART, systemd, containers) under a single `request` method - Improve `RequestManager` with deadline awareness and legacy response support - Refactor agent response routing into dedicated `agent/response.go` - Update version to 0.18.0-beta.2
93 lines
2.6 KiB
Go
93 lines
2.6 KiB
Go
package systems
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/henrygd/beszel/internal/entities/smart"
|
|
"github.com/pocketbase/pocketbase/core"
|
|
)
|
|
|
|
// FetchAndSaveSmartDevices fetches SMART data from the agent and saves it to the database
|
|
func (sys *System) FetchAndSaveSmartDevices() error {
|
|
smartData, err := sys.FetchSmartDataFromAgent()
|
|
if err != nil || len(smartData) == 0 {
|
|
return err
|
|
}
|
|
return sys.saveSmartDevices(smartData)
|
|
}
|
|
|
|
// saveSmartDevices saves SMART device data to the smart_devices collection
|
|
func (sys *System) saveSmartDevices(smartData map[string]smart.SmartData) error {
|
|
if len(smartData) == 0 {
|
|
return nil
|
|
}
|
|
|
|
hub := sys.manager.hub
|
|
collection, err := hub.FindCachedCollectionByNameOrId("smart_devices")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for deviceKey, device := range smartData {
|
|
if err := sys.upsertSmartDeviceRecord(collection, deviceKey, device); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (sys *System) upsertSmartDeviceRecord(collection *core.Collection, deviceKey string, device smart.SmartData) error {
|
|
hub := sys.manager.hub
|
|
recordID := makeStableHashId(sys.Id, deviceKey)
|
|
|
|
record, err := hub.FindRecordById(collection, recordID)
|
|
if err != nil {
|
|
if !errors.Is(err, sql.ErrNoRows) {
|
|
return err
|
|
}
|
|
record = core.NewRecord(collection)
|
|
record.Set("id", recordID)
|
|
}
|
|
|
|
name := device.DiskName
|
|
if name == "" {
|
|
name = deviceKey
|
|
}
|
|
|
|
powerOnHours, powerCycles := extractPowerMetrics(device.Attributes)
|
|
record.Set("system", sys.Id)
|
|
record.Set("name", name)
|
|
record.Set("model", device.ModelName)
|
|
record.Set("state", device.SmartStatus)
|
|
record.Set("capacity", device.Capacity)
|
|
record.Set("temp", device.Temperature)
|
|
record.Set("firmware", device.FirmwareVersion)
|
|
record.Set("serial", device.SerialNumber)
|
|
record.Set("type", device.DiskType)
|
|
record.Set("hours", powerOnHours)
|
|
record.Set("cycles", powerCycles)
|
|
record.Set("attributes", device.Attributes)
|
|
|
|
return hub.SaveNoValidate(record)
|
|
}
|
|
|
|
// extractPowerMetrics extracts power on hours and power cycles from SMART attributes
|
|
func extractPowerMetrics(attributes []*smart.SmartAttribute) (powerOnHours, powerCycles uint64) {
|
|
for _, attr := range attributes {
|
|
nameLower := strings.ToLower(attr.Name)
|
|
if powerOnHours == 0 && (strings.Contains(nameLower, "poweronhours") || strings.Contains(nameLower, "power_on_hours")) {
|
|
powerOnHours = attr.RawValue
|
|
}
|
|
if powerCycles == 0 && ((strings.Contains(nameLower, "power") && strings.Contains(nameLower, "cycle")) || strings.Contains(nameLower, "startstopcycles")) {
|
|
powerCycles = attr.RawValue
|
|
}
|
|
if powerOnHours > 0 && powerCycles > 0 {
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|