Recent content by LodgedDrip

  1. L

    PBS API connectivity

    Thanks! That's it. Threw me off a bit as it works without it on the PVE api.
  2. L

    PBS API connectivity

    Hi, I've set up a python script that is going to be using the PBS API, however, when trying to connect I'm seeing the following: "2023-01-17T13:48:53+00:00: authentication failure; rhost=[REMOVED] msg=user account or token disabled or expired." For testing purposes, it's using the "root@pam"...
  3. L

    LXC Proxmox doesn't seem to update status

    Hi, I've just noticed that when stopping/starting containers, proxmox doesn't seem to update the status of the container on the UI but I can see from 'lxc-ls -f' on the commandline that the container has indeed stopped. Could this be a configuration issue/bug within Proxmox? edit: it took 6...
  4. L

    LXC and VM Resource management

    Is anyone able to advise on the above, please?
  5. L

    LXC and VM Resource management

    Good Afternoon, I'm trying to find out a bit more about how Proxmox manages the resource management when running containers and VMs on the same HV. I've got a six+ node (48 Core, 64G each) PVE cluster with a range of VMs on it at the moment, however, I need to deploy an application which runs...
  6. L

    API - Get the backup status of specific VMID

    That doesn't seem to return the backup status though? unless I'm missing something here?
  7. L

    VM Orchestration using Proxmox

    Thanks! Making good progress with a Python script to do this and work on the system itself via the agent.
  8. L

    API - Get the backup status of specific VMID

    Hi, I'd like to be able to get the latest status of a VM backup, if it was successful, had any errors, time taken etc. Is this possible at the moment via existing API calls to either the Proxmox VE or Backup Server API endpoints?
  9. L

    VM Orchestration using Proxmox

    I've taken a look at the API a couple of times, but I don't think it can actually manipulate things on the VM itself? while handy to change the VLAN tag, or other settings, it doesn't seem to help with setting the VM IP or on-system config.
  10. L

    VM Orchestration using Proxmox

    Interesting, I've seen this mentioned a few times with people using it along with Ansible and other tools it seems.
  11. L

    VM Orchestration using Proxmox

    Hi, I'm trying to work out ways we can streamline our processes for at least creating new virtual machines on our Proxmox cluster. At the moment, we've got a set of VMs (templates) that are cloned to make new VMs; the team has to log in via a console and then run a script which sets a bunch of...
  12. L

    Proxmox Backup Server Metrics

    Just picking this up again. Metrics such as backup execution times, task and datastore summary such as disk usage, if backups had issues/status (like Ceph shows 'healthy' or 'unhealthy') etc. Historical data would be good to see the rate at which the disks are being used, how fast backups are...
  13. L

    lxc and qemu disk usage

    Just bumping this back up to see if anyone has any thoughts.
  14. L

    lxc and qemu disk usage

    Hi, We've setup Proxmox metrics which is sending data in to an influxdb instance, this is then displayed using Grafana. We've noticed that the disk usage stat (disk) in a query like this: SELECT "cpu", "cpus", "mem", "maxmem" , "disk" ,"maxdisk" FROM "system" WHERE ("object" = 'qemu' OR...