mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 18:53:37 +00:00
feat: complete ZFS pool monitoring implementation (addresses #423)
- Implement proper API integration with list and detail endpoints - Add ZFS pool and device status conversion - Enable by default with PULSE_DISABLE_ZFS_MONITORING opt-out - Test with real Proxmox nodes and verify functionality - Add comprehensive error handling and logging - Document feature configuration and requirements The feature now properly: - Fetches ZFS pool status from Proxmox API - Detects degraded/faulted pools and devices - Tracks read/write/checksum errors - Generates appropriate alerts - Displays issues in the Storage tab UI Tested and verified working with real Proxmox clusters.
This commit is contained in:
@@ -1,113 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/rcourtman/pulse-go-rewrite/internal/config"
|
||||
"github.com/rcourtman/pulse-go-rewrite/pkg/proxmox"
|
||||
"github.com/rs/zerolog"
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Setup logging
|
||||
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr})
|
||||
|
||||
// Load config
|
||||
appConfig, err := config.Load()
|
||||
if err != nil || len(appConfig.PVEInstances) == 0 {
|
||||
log.Fatal().Msg("No PVE instances configured")
|
||||
}
|
||||
|
||||
// Test first instance
|
||||
pveConfig := appConfig.PVEInstances[0]
|
||||
cfg := proxmox.ClientConfig{
|
||||
Host: pveConfig.Host,
|
||||
User: pveConfig.User,
|
||||
Password: pveConfig.Password,
|
||||
TokenName: pveConfig.TokenName,
|
||||
TokenValue: pveConfig.TokenValue,
|
||||
}
|
||||
|
||||
// Create client
|
||||
client, err := proxmox.NewClient(cfg)
|
||||
if err != nil {
|
||||
log.Fatal().Err(err).Msg("Failed to create client")
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
||||
defer cancel()
|
||||
|
||||
// Get nodes
|
||||
nodes, err := client.GetNodes(ctx)
|
||||
if err != nil {
|
||||
log.Fatal().Err(err).Msg("Failed to get nodes")
|
||||
}
|
||||
|
||||
fmt.Printf("Testing ZFS integration on %d nodes\n", len(nodes))
|
||||
|
||||
for _, node := range nodes {
|
||||
if node.Status != "online" {
|
||||
fmt.Printf("Skipping offline node: %s\n", node.Node)
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Printf("\n=== Node: %s ===\n", node.Node)
|
||||
|
||||
// Test the new ZFS function
|
||||
pools, err := client.GetZFSPoolsWithDetails(ctx, node.Node)
|
||||
if err != nil {
|
||||
log.Error().Err(err).Str("node", node.Node).Msg("Failed to get ZFS pools")
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Printf("Found %d ZFS pools\n", len(pools))
|
||||
|
||||
for _, pool := range pools {
|
||||
fmt.Printf("\nPool: %s\n", pool.Name)
|
||||
fmt.Printf(" Health: %s\n", pool.Health)
|
||||
fmt.Printf(" State: %s\n", pool.State)
|
||||
fmt.Printf(" Status: %s\n", pool.Status)
|
||||
fmt.Printf(" Errors: %s\n", pool.Errors)
|
||||
fmt.Printf(" Scan: %s\n", pool.Scan)
|
||||
|
||||
// Convert to model
|
||||
modelPool := pool.ConvertToModelZFSPool()
|
||||
if modelPool != nil {
|
||||
fmt.Printf(" Model State: %s\n", modelPool.State)
|
||||
fmt.Printf(" Total Errors: Read=%d, Write=%d, Checksum=%d\n",
|
||||
modelPool.ReadErrors, modelPool.WriteErrors, modelPool.ChecksumErrors)
|
||||
|
||||
if len(modelPool.Devices) > 0 {
|
||||
fmt.Printf(" Devices with issues:\n")
|
||||
for _, dev := range modelPool.Devices {
|
||||
fmt.Printf(" - %s (%s): State=%s, Errors: R=%d W=%d C=%d\n",
|
||||
dev.Name, dev.Type, dev.State,
|
||||
dev.ReadErrors, dev.WriteErrors, dev.ChecksumErrors)
|
||||
}
|
||||
} else {
|
||||
fmt.Printf(" All devices healthy\n")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Get storage to see ZFS storage
|
||||
storage, err := client.GetStorage(ctx, node.Node)
|
||||
if err != nil {
|
||||
log.Error().Err(err).Str("node", node.Node).Msg("Failed to get storage")
|
||||
continue
|
||||
}
|
||||
|
||||
fmt.Printf("\nZFS Storage on this node:\n")
|
||||
for _, s := range storage {
|
||||
if s.Type == "zfspool" || s.Type == "zfs" {
|
||||
fmt.Printf(" - %s (type=%s, active=%d)\n", s.Storage, s.Type, s.Active)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fmt.Println("\n✓ ZFS integration test complete")
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
# ZFS Pool Monitoring
|
||||
|
||||
Pulse v4.15.0+ includes automatic ZFS pool health monitoring for Proxmox VE nodes.
|
||||
|
||||
## Features
|
||||
|
||||
- **Automatic Detection**: Detects ZFS storage and monitors associated pools
|
||||
- **Health Status**: Monitors pool state (ONLINE, DEGRADED, FAULTED)
|
||||
- **Error Tracking**: Tracks read, write, and checksum errors
|
||||
- **Device Monitoring**: Monitors individual devices within pools
|
||||
- **Alert Generation**: Creates alerts for degraded pools and device errors
|
||||
- **Frontend Display**: Shows ZFS issues inline with storage information
|
||||
|
||||
## Requirements
|
||||
|
||||
### Proxmox Permissions
|
||||
The Pulse user needs `Sys.Audit` permission on `/nodes/{node}/disks` to access ZFS information:
|
||||
|
||||
```bash
|
||||
# Grant permission for ZFS monitoring (already included in standard Pulse role)
|
||||
pveum acl modify /nodes -user pulse-monitor@pam -role PVEAuditor
|
||||
```
|
||||
|
||||
### API Endpoints Used
|
||||
- `/nodes/{node}/disks/zfs` - Lists ZFS pools
|
||||
- `/nodes/{node}/disks/zfs/{pool}` - Gets detailed pool status
|
||||
|
||||
## Configuration
|
||||
|
||||
ZFS monitoring is **enabled by default** in Pulse v4.15.0+.
|
||||
|
||||
### Disabling ZFS Monitoring
|
||||
If you want to disable ZFS monitoring (e.g., for performance reasons):
|
||||
|
||||
```bash
|
||||
# Add to /opt/pulse/.env or environment
|
||||
PULSE_DISABLE_ZFS_MONITORING=true
|
||||
```
|
||||
|
||||
## Alert Types
|
||||
|
||||
### Pool State Alerts
|
||||
- **Warning**: Pool is DEGRADED
|
||||
- **Critical**: Pool is FAULTED or UNAVAIL
|
||||
|
||||
### Error Alerts
|
||||
- **Warning**: Any read/write/checksum errors detected
|
||||
- Alerts include error counts and affected devices
|
||||
|
||||
### Device Alerts
|
||||
- **Warning**: Device has errors but is ONLINE
|
||||
- **Critical**: Device is FAULTED or UNAVAIL
|
||||
|
||||
## Frontend Display
|
||||
|
||||
ZFS issues appear in the Storage tab:
|
||||
- Yellow warning bar for degraded pools
|
||||
- Red error counts for devices with issues
|
||||
- Detailed device status for troubleshooting
|
||||
|
||||
## Performance Impact
|
||||
|
||||
- Adds 2 API calls per node with ZFS storage
|
||||
- Typically adds <1 second to polling cycle
|
||||
- Only queries nodes that have ZFS storage
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### No ZFS Data Appearing
|
||||
1. Check permissions: `pveum user permissions pulse-monitor@pam`
|
||||
2. Verify ZFS pools exist: `zpool list`
|
||||
3. Check logs: `grep ZFS /opt/pulse/pulse.log`
|
||||
|
||||
### Permission Denied Errors
|
||||
Grant the required permission:
|
||||
```bash
|
||||
pveum acl modify /nodes -user pulse-monitor@pam -role PVEAuditor
|
||||
```
|
||||
|
||||
### High API Load
|
||||
Disable ZFS monitoring if not needed:
|
||||
```bash
|
||||
echo "PULSE_DISABLE_ZFS_MONITORING=true" >> /opt/pulse/.env
|
||||
systemctl restart pulse-backend
|
||||
```
|
||||
|
||||
## Example Alert
|
||||
|
||||
```
|
||||
Alert: ZFS pool 'rpool' is DEGRADED
|
||||
Node: pve1
|
||||
Pool: rpool
|
||||
State: DEGRADED
|
||||
Errors: 12 read, 0 write, 3 checksum
|
||||
Device sdb2: DEGRADED with 12 read errors
|
||||
```
|
||||
|
||||
This helps administrators identify failing drives before complete failure occurs.
|
||||
@@ -1111,10 +1111,13 @@ func (c *Client) GetZFSPoolDetail(ctx context.Context, node, pool string) (*ZFSP
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
var detail ZFSPoolDetail
|
||||
if err := json.NewDecoder(resp.Body).Decode(&detail); err != nil {
|
||||
// Proxmox returns {"data": {...}}
|
||||
var result struct {
|
||||
Data ZFSPoolDetail `json:"data"`
|
||||
}
|
||||
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &detail, nil
|
||||
return &result.Data, nil
|
||||
}
|
||||
+1
-1
@@ -140,7 +140,7 @@ func convertDeviceRecursive(dev ZFSPoolDevice) []ZFSDevice {
|
||||
deviceType := "disk"
|
||||
if dev.Leaf == 0 && len(dev.Children) > 0 {
|
||||
// It's a vdev (mirror, raidz, etc.)
|
||||
if dev.Name == "mirror" || dev.Name[:6] == "mirror" {
|
||||
if dev.Name == "mirror" || (len(dev.Name) >= 6 && dev.Name[:6] == "mirror") {
|
||||
deviceType = "mirror"
|
||||
} else if len(dev.Name) >= 5 && dev.Name[:5] == "raidz" {
|
||||
deviceType = dev.Name // raidz, raidz2, raidz3
|
||||
|
||||
Reference in New Issue
Block a user