diff --git a/jc/parsers/rsync.py b/jc/parsers/rsync.py index 8ce76d74..44190391 100644 --- a/jc/parsers/rsync.py +++ b/jc/parsers/rsync.py @@ -29,37 +29,48 @@ Schema: [ { "summary": { - "date": string, - "time": string, - "process": integer, # need to convert - "sent": integer, # need to convert - "received": integer, # need to convert - "total_size": integer, # need to convert - "matches": integer, # need to convert - "hash_hits": integer, # need to convert - "false_alarms": integer, # need to convert - "data": integer, # need to convert - "bytes_sec": float, # need to convert - "speedup": float # need to convert + "date": string, + "time": string, + "process": integer, + "sent": integer, + "received": integer, + "total_size": integer, + "matches": integer, + "hash_hits": integer, + "false_alarms": integer, + "data": integer, + "bytes_sec": float, + "speedup": float }, "files": [ - "filename": string, - "metadata": string, - "update_type": string/null, - "file_type": string/null, - "checksum_or_value_different": bool/null, - "size_different": bool/null, - "modification_time_different": bool/null, - "permissions_different": bool/null, - "owner_different": bool/null, - "group_different": bool/null, - "future": null, - "acl_different": bool/null, - "extended_attribute_different": bool/null + { + "filename": string, + "date": string, + "time": string, + "process": integer, + "metadata": string, + "update_type": string/null, [0] + "file_type": string/null, [1] + "checksum_or_value_different": bool/null, + "size_different": bool/null, + "modification_time_different": bool/null, + "permissions_different": bool/null, + "owner_different": bool/null, + "group_different": bool/null, + "future": null, + "acl_different": bool/null, + "extended_attribute_different": bool/null, + "epoch": int, [2] + } ] } ] + [0] 'file sent', 'file received', 'local change or creation', + 'hard link', 'not updated', 'message' + [1] 'file', 'directory', 'symlink', 'device', 'special file' + [2] naive timestamp if time and date fields exist and can be converted. + Examples: $ rsync | jc --rsync -p @@ -104,6 +115,7 @@ def _process(proc_data: List[Dict]) -> List[Dict]: 'false_alarms', 'data' ] float_list = ['bytes_sec', 'speedup'] + for item in proc_data: for key in item['summary']: if key in int_list: @@ -111,6 +123,18 @@ def _process(proc_data: List[Dict]) -> List[Dict]: if key in float_list: item['summary'][key] = jc.utils.convert_to_float(item['summary'][key]) + for entry in item['files']: + for key in entry: + if key in int_list: + entry[key] = jc.utils.convert_to_int(entry[key]) + + # add timestamp + if 'date' in entry and 'time' in entry: + date = entry['date'].replace('/', '-') + date_time = f'{date} {entry["time"]}' + ts = jc.utils.timestamp(date_time) + entry['epoch'] = ts.naive + return proc_data diff --git a/tests/fixtures/centos-7.7/rsync-i-logfile.json b/tests/fixtures/centos-7.7/rsync-i-logfile.json index 54eb2b8d..477d4512 100644 --- a/tests/fixtures/centos-7.7/rsync-i-logfile.json +++ b/tests/fixtures/centos-7.7/rsync-i-logfile.json @@ -1 +1 @@ -[{"summary":{"date":"2022/01/28","time":"03:53:52","process":9190,"sent":1713,"received":507,"total_size":235},"files":[{"filename":"./","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"03:53:52","process":"9190","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]},{"summary":{"date":"2022/01/28","time":"03:55:00","process":9198,"sent":1713,"received":507,"total_size":235},"files":[{"filename":"./","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"03:55:00","process":"9198","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]}] +[{"summary":{"date":"2022/01/28","time":"03:53:52","process":9190,"sent":1713,"received":507,"total_size":235},"files":[{"filename":"./","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643370832},{"filename":"a.txt","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"b.txt","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"c.txt","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"d.txt","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"file with spaces.txt","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file1","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file10","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file11","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file12","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file13","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file14","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file15","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file16","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file17","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file18","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file19","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file2","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file20","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file3","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file4","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file5","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file6","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file7","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file8","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832},{"filename":"folder/file9","date":"2022/01/28","time":"03:53:52","process":9190,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370832}]},{"summary":{"date":"2022/01/28","time":"03:55:00","process":9198,"sent":1713,"received":507,"total_size":235},"files":[{"filename":"./","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643370900},{"filename":"a.txt","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"b.txt","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"c.txt","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"d.txt","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"file with spaces.txt","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file1","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file10","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file11","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file12","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file13","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file14","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file15","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file16","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file17","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file18","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file19","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file2","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file20","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file3","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file4","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file5","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file6","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file7","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file8","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900},{"filename":"folder/file9","date":"2022/01/28","time":"03:55:00","process":9198,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643370900}]}] diff --git a/tests/fixtures/centos-7.7/rsync-i-v-logfile.json b/tests/fixtures/centos-7.7/rsync-i-v-logfile.json index 946bba32..8906cea3 100644 --- a/tests/fixtures/centos-7.7/rsync-i-v-logfile.json +++ b/tests/fixtures/centos-7.7/rsync-i-v-logfile.json @@ -1 +1 @@ -[{"summary":{"sent":1708,"received":502,"bytes_sec":4420.0,"total_size":235,"speedup":0.11},"files":[{"filename":"./","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"04:22:10","process":"9306","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]},{"summary":{"sent":1708,"received":502,"bytes_sec":4420.0,"total_size":235,"speedup":0.11},"files":[{"filename":"./","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"11:07:21","process":"10540","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]}] +[{"summary":{"sent":1708,"received":502,"bytes_sec":4420.0,"total_size":235,"speedup":0.11},"files":[{"filename":"./","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643372530},{"filename":"a.txt","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"b.txt","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"c.txt","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"d.txt","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file1","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file10","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file11","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file12","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file13","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file14","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file15","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file16","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file17","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file18","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file19","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file2","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file20","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file3","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file4","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file5","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file6","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file7","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file8","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530},{"filename":"folder/file9","date":"2022/01/28","time":"04:22:10","process":9306,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643372530}]},{"summary":{"sent":1708,"received":502,"bytes_sec":4420.0,"total_size":235,"speedup":0.11},"files":[{"filename":"./","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643396841},{"filename":"a.txt","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"b.txt","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"c.txt","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"d.txt","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file1","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file10","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file11","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file12","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file13","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file14","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file15","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file16","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file17","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file18","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file19","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file2","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file20","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file3","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file4","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file5","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file6","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file7","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file8","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841},{"filename":"folder/file9","date":"2022/01/28","time":"11:07:21","process":10540,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643396841}]}] diff --git a/tests/fixtures/centos-7.7/rsync-i-vv-logfile.json b/tests/fixtures/centos-7.7/rsync-i-vv-logfile.json index f90ed310..7c1137e7 100644 --- a/tests/fixtures/centos-7.7/rsync-i-vv-logfile.json +++ b/tests/fixtures/centos-7.7/rsync-i-vv-logfile.json @@ -1 +1 @@ -[{"summary":{"date":"2022/01/28","time":"04:37:34","process":9349,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":569,"bytes_sec":4554.0,"total_size":235,"speedup":0.1},"files":[{"filename":"./","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"04:37:34","process":"9349","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]},{"summary":{"date":"2022/01/28","time":"11:20:55","process":10585,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":569,"bytes_sec":4554.0,"total_size":235,"speedup":0.1},"files":[{"filename":"./","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"11:20:55","process":"10585","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]}] +[{"summary":{"date":"2022/01/28","time":"04:37:34","process":9349,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":569,"bytes_sec":4554.0,"total_size":235,"speedup":0.1},"files":[{"filename":"./","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643373454},{"filename":"a.txt","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"b.txt","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"c.txt","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"d.txt","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file1","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file10","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file11","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file12","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file13","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file14","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file15","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file16","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file17","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file18","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file19","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file2","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file20","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file3","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file4","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file5","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file6","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file7","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file8","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454},{"filename":"folder/file9","date":"2022/01/28","time":"04:37:34","process":9349,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643373454}]},{"summary":{"date":"2022/01/28","time":"11:20:55","process":10585,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":569,"bytes_sec":4554.0,"total_size":235,"speedup":0.1},"files":[{"filename":"./","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643397655},{"filename":"a.txt","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"b.txt","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"c.txt","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"d.txt","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file1","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file10","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file11","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file12","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file13","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file14","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file15","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file16","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file17","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file18","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file19","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file2","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file20","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file3","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file4","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file5","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file6","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file7","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file8","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655},{"filename":"folder/file9","date":"2022/01/28","time":"11:20:55","process":10585,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397655}]}] diff --git a/tests/fixtures/centos-7.7/rsync-i-vvv-logfile.json b/tests/fixtures/centos-7.7/rsync-i-vvv-logfile.json index 090d33a2..d6f49368 100644 --- a/tests/fixtures/centos-7.7/rsync-i-vvv-logfile.json +++ b/tests/fixtures/centos-7.7/rsync-i-vvv-logfile.json @@ -1 +1 @@ -[{"summary":{"date":"2022/01/28","time":"04:50:27","process":9396,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":8209,"bytes_sec":19834.0,"total_size":235,"speedup":0.02},"files":[{"filename":"./","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"04:50:27","process":"9396","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]},{"summary":{"date":"2022/01/28","time":"11:24:48","process":10616,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":8211,"bytes_sec":19838.0,"total_size":235,"speedup":0.02},"files":[{"filename":"./","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"11:24:48","process":"10616","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]},{"summary":{"date":"2022/01/28","time":"18:56:27","process":12309,"matches":0,"hash_hits":0,"false_alarms":0,"data":218258163,"sent":218313010,"received":8608,"bytes_sec":62377605.14,"total_size":218258163,"speedup":1.0},"files":[{"filename":"./","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false},{"filename":"a.txt","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"b.txt","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"c.txt","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"d.txt","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"file with spaces.txt","date":"2022/01/28","time":"18:56:24","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"pyspark-2.4.5-py2.py3-none-any.whl","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file1","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file10","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file11","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file12","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file13","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file14","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file15","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file16","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file17","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file18","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file19","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file2","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file20","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file3","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file4","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file5","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file6","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file7","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file8","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null},{"filename":"folder/file9","date":"2022/01/28","time":"18:56:27","process":"12309","metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null}]}] +[{"summary":{"date":"2022/01/28","time":"04:50:27","process":9396,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":8209,"bytes_sec":19834.0,"total_size":235,"speedup":0.02},"files":[{"filename":"./","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643374227},{"filename":"a.txt","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"b.txt","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"c.txt","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"d.txt","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"file with spaces.txt","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file1","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file10","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file11","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file12","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file13","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file14","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file15","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file16","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file17","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file18","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file19","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file2","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file20","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file3","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file4","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file5","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file6","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file7","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file8","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227},{"filename":"folder/file9","date":"2022/01/28","time":"04:50:27","process":9396,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643374227}]},{"summary":{"date":"2022/01/28","time":"11:24:48","process":10616,"matches":0,"hash_hits":0,"false_alarms":0,"data":235,"sent":1708,"received":8211,"bytes_sec":19838.0,"total_size":235,"speedup":0.02},"files":[{"filename":"./","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643397888},{"filename":"a.txt","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"b.txt","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"c.txt","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"d.txt","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"file with spaces.txt","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file1","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file10","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file11","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file12","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file13","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file14","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file15","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file16","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file17","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file18","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file19","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file2","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file20","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file3","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file4","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file5","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file6","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file7","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file8","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888},{"filename":"folder/file9","date":"2022/01/28","time":"11:24:48","process":10616,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643397888}]},{"summary":{"date":"2022/01/28","time":"18:56:27","process":12309,"matches":0,"hash_hits":0,"false_alarms":0,"data":218258163,"sent":218313010,"received":8608,"bytes_sec":62377605.14,"total_size":218258163,"speedup":1.0},"files":[{"filename":"./","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":".d..t......","update_type":"not updated","file_type":"directory","checksum_or_value_different":false,"size_different":false,"modification_time_different":true,"permissions_different":false,"owner_different":false,"group_different":false,"acl_different":false,"extended_attribute_different":false,"epoch":1643424984},{"filename":"a.txt","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424984},{"filename":"b.txt","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424984},{"filename":"c.txt","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424984},{"filename":"d.txt","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424984},{"filename":"file with spaces.txt","date":"2022/01/28","time":"18:56:24","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424984},{"filename":"pyspark-2.4.5-py2.py3-none-any.whl","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":"cd+++++++++","update_type":"local change or creation","file_type":"directory","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file1","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file10","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file11","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file12","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file13","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file14","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file15","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file16","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file17","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file18","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file19","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file2","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file20","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file3","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file4","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file5","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file6","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file7","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file8","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987},{"filename":"folder/file9","date":"2022/01/28","time":"18:56:27","process":12309,"metadata":">f+++++++++","update_type":"file received","file_type":"file","checksum_or_value_different":null,"size_different":null,"modification_time_different":null,"permissions_different":null,"owner_different":null,"group_different":null,"acl_different":null,"extended_attribute_different":null,"epoch":1643424987}]}]