Re: Getting rsync to store timing information in its logs

2010-07-28 Thread Rahul Nabar
On Wed, Jul 28, 2010 at 3:31 AM, Paul Slootman wrote: > You're off by 1000. It's 1.19MB/s (1.13MiB/s). > Check your calculator :-) Ok, I'm signing up for math101 again. :) Sorry! -- Rahul -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change opti

Re: Getting rsync to store timing information in its logs

2010-07-28 Thread Paul Slootman
On Tue 27 Jul 2010, Rahul Nabar wrote: > > The only timing info,. I see is this at the end: > > sent 3067328 bytes received 7853035429 bytes 1187888.83 bytes/sec > Also, the bytes/sec figure has me confused. It seems to convert to > about 1.13 GB/sec. But I know that my ethernet connection is

Re: Getting rsync to store timing information in its logs

2010-07-27 Thread Henri Shustak
> Is there a way to know from the rsync logs how long it took to do a backup? > > The only timing info,. I see is this at the end: > > sent 3067328 bytes received 7853035429 bytes 1187888.83 bytes/sec > total size is 1559866450336 speedup is 198.55 The latest alpha release of LBackup support

Re: Getting rsync to store timing information in its logs

2010-07-27 Thread Elliot Wilen
Rahul, My method, which may be primitive, is to call "date" immediately before and after running. Something like: 20 22 * * * date >> /var/log/mysync.log; rsync -av foo bar >> /var/log/mysync.log; date >> /var/log/mysync.log Sorry, can't help with the bandwidth question. Regards, Elliot Wile

Getting rsync to store timing information in its logs

2010-07-27 Thread Rahul Nabar
Is there a way to know from the rsync logs how long it took to do a backup? The only timing info,. I see is this at the end: sent 3067328 bytes received 7853035429 bytes 1187888.83 bytes/sec total size is 1559866450336 speedup is 198.55 Can I use it to figure out how long the operation took?