The backup documentation at How to back up an Incus server - Incus documentation states that best practices is to do a full tar backup of /var/lib/incus.
In writing a script for full backups for offline storage I noticed that tar of /var/lib/incus always gives tar errors of files changing and not backing up sockets
E.g.
tar: /var/lib/incus/storage-pools/default/containers/REDACTED/rootfs/...gitaly.socket: socket ignored
tar: /var/lib/incus/storage-pools/default/containers/REDACTED...application_json.log: file changed as we read it
tar: /var/lib/incus/storage-pools/default/containers/REDACTED/rootfs/var/log/journal/e9f2d59209754628872cc6607f82ca4e/system.journal: file changed as we read it
tar: /var/lib/incus/storage-pools/default/containers/REDACTED/rootfs/var/spool/postfix/private/scache: socket ignored
How ok are those to ignore? Is it best practice to stop or pause containers (or incus) on that incus server while doing the full backup of /var/lib/incus?