Backuppc v3.1 using rsync We are trying to measure the amount of changed data per backup run for a given client machine. What we've done so far is examine the transfer log for that client, specifically:
BackupPC_zcat /var/lib/backuppc/pc/CLIENT/XferLOG.nnn | grep '\W*create'|\ grep -v '\W*create d'|\ awk '{totalsize += $4}END{printf("%d\n", totalsize/1024/1024)}'" In other words, find all lines the XferLOG file that start with 'create' but do not start with 'create d', and then sum up the size of the transfers. Is this a valid mechanism? If a large files has a small change, and thus rsync only transfers a relatively small percentage of the file, does the transfer log reflect the size of the transfer or the size of the file in full? Thanks, Keith ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ BackupPC-users mailing list BackupPC-users@lists.sourceforge.net List: https://lists.sourceforge.net/lists/listinfo/backuppc-users Wiki: http://backuppc.wiki.sourceforge.net Project: http://backuppc.sourceforge.net/