AI Chat Integration: - Multi-provider support (Anthropic, OpenAI, Ollama) - Streaming responses with markdown rendering - Agent command execution for remote troubleshooting - Context-aware conversations with host/container metadata Agent Updates: - Add --enable-proxmox flag for automatic PVE/PBS token setup - Improve auto-update with semver comparison (prevents downgrades) - Add updatedFrom tracking to report previous version after update - Reduce initial update check delay from 30s to 5s - Add agent version column to Hosts page table Host Metrics: - Add DiskIO stats collection (read/write bytes, ops, time) - Improve disk filtering to exclude Docker overlay mounts - Add RAID array monitoring via mdadm - Enhanced temperature sensor parsing Frontend: - New Agent Version column on Hosts overview table - Improved node modal with agent-first installation flow - Add DiskIO display in host drawer - Better responsive handling for metric bars
1.4 KiB
1.4 KiB
📝 Sensor Proxy Log Forwarding
⚠️ Deprecated: The sensor-proxy is deprecated in favor of the unified Pulse agent. For new installations, use
install.sh --enable-proxmoxinstead. See TEMPERATURE_MONITORING.md.
Forward audit.log and proxy.log to a central SIEM via RELP + TLS.
🚀 Quick Start
Run the helper script with your collector details:
sudo REMOTE_HOST=logs.example.com \
REMOTE_PORT=6514 \
CERT_DIR=/etc/pulse/log-forwarding \
CA_CERT=/path/to/ca.crt \
CLIENT_CERT=/path/to/client.crt \
CLIENT_KEY=/path/to/client.key \
/opt/pulse/scripts/setup-log-forwarding.sh
📋 What It Does
- Inputs: Watches
/var/log/pulse/sensor-proxy/{audit,proxy}.log. - Queue: Disk-backed queue (50k messages) for reliability.
- Output: RELP over TLS to
REMOTE_HOST. - Mirror: Local debug file at
/var/log/pulse/sensor-proxy/forwarding.log.
✅ Verification
- Check Status:
sudo systemctl status rsyslog - View Mirror:
tail -f /var/log/pulse/sensor-proxy/forwarding.log - Test: Restart proxy and check remote collector for
pulse.audittag.
🧹 Maintenance
- Disable: Remove
/etc/rsyslog.d/pulse-sensor-proxy.confand restart rsyslog. - Rotate Certs: Replace files in
CERT_DIRand restart rsyslog.