mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 14:35:56 +03:00
[GH-ISSUE #69] [Bug]: QEMU Guest Agent shows (Disabled) but its enabled on the PVE Hosts #84
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#84
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Trembler34 on GitHub (Mar 3, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/69
Bug Description
Checking Guest Agents, all VMs show "disabled" but its actually enabled on the host itself for each VM.
Seems proxcenter is not recognizing that flag.
Steps to Reproduce
Go to VM > Options > Scroll down to QEMU Guest Agent
Expected Behavior
VMs to show that its actually enabled when it truly is.
Actual Behavior
Shows disabled.
ProxCenter Version
latest
Proxmox VE Version
latest
Browser
Chrome
Logs / Screenshots
Proxcenter Display
PVE Host
@adminsyspro commented on GitHub (Mar 4, 2026):
Thanks for reporting this!
Root cause identified: The guest agent field parsing only checked for the
enabled=1format, but Proxmox most commonly stores the agent config as just1(or1,fstrim_cloned_disks=1, etc.). Since"1"doesn't contain the string"enabled=1", the status was always showing as Disabled.Fix: Updated the parsing logic to also detect values starting with
"1", which covers all Proxmox agent config formats:1→ ✅ now detected1,fstrim_cloned_disks=1→ ✅ now detectedenabled=1→ ✅ already workedenabled=1,type=virtio→ ✅ already workedPushed in commit
2fe90ce. The fix will be available in the next build.@Trembler34 commented on GitHub (Mar 4, 2026):
Fixed! Thank you.