Fileset Examples
Example 1
In the example below, all guest VMs will be backed up.
Fileset {
Name = FS_ProxmoxAll
Include {
Plugin = "proxmox:"
}
}
Example 2
In the example below, a single guest VM with name-label of “VM1” will be backed up.
Fileset {
Name = FS_Proxmox_VM1
Include {
Plugin = "proxmox: vm=VM1"
}
}
Example 3
The same example as above, but using vmid instead:
Fileset {
Name = FS_Proxmox_VM1
Include {
Plugin = "proxmox: vmid=101"
}
}
Example 4
In the following example, all guest VMs which contain “Prod” in their names will be backed up.
Fileset {
Name = FS_Proxmox_ProdAll
Include {
Plugin = "proxmox: include=Prod"
}
}
Example 5
In this final example, all guest VMs except VMs whose name begins with “Test” will be backed up.
Fileset {
Name = FS_Proxmox_AllbutTest
Include {
Plugin = "proxmox: include=.* exclude=^Test"
}
}
Go back to: Configuration.