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
44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
# ⚙️ Sensor Proxy Configuration
|
|
|
|
> **⚠️ Deprecated:** The sensor-proxy is deprecated in favor of the unified Pulse agent.
|
|
> For new installations, use `install.sh --enable-proxmox` instead.
|
|
> See [TEMPERATURE_MONITORING.md](/docs/security/TEMPERATURE_MONITORING.md).
|
|
|
|
Safe configuration management using the CLI (v4.31.1+).
|
|
|
|
## 📂 Files
|
|
* **`config.yaml`**: General settings (logging, metrics).
|
|
* **`allowed_nodes.yaml`**: Authorized node list (managed via CLI).
|
|
|
|
## 🛠️ CLI Reference
|
|
|
|
### Validation
|
|
Check for errors before restart.
|
|
```bash
|
|
pulse-sensor-proxy config validate
|
|
```
|
|
|
|
### Managing Nodes
|
|
**Add Nodes (Merge):**
|
|
```bash
|
|
pulse-sensor-proxy config set-allowed-nodes --merge 192.168.0.10
|
|
```
|
|
|
|
**Replace List:**
|
|
```bash
|
|
pulse-sensor-proxy config set-allowed-nodes --replace \
|
|
--merge 192.168.0.1 --merge 192.168.0.2
|
|
```
|
|
|
|
## ⚠️ Troubleshooting
|
|
|
|
**Validation Fails:**
|
|
* Check for duplicate `allowed_nodes` blocks in `config.yaml`.
|
|
* Run `pulse-sensor-proxy config validate 2>&1` for details.
|
|
|
|
**Lock Errors:**
|
|
* Remove stale locks if process is dead: `rm /etc/pulse-sensor-proxy/*.lock`.
|
|
|
|
**Empty List:**
|
|
* Valid for IPC-only clusters.
|
|
* Populate manually if needed using `--replace`.
|