1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

add slice info to Metadata output

This commit is contained in:
Kelly Brazil
2023-01-30 08:52:22 -08:00
parent 4b55f49e99
commit 2beb26f3e3

View File

@ -610,7 +610,9 @@ class JcCli():
if self.run_timestamp: if self.run_timestamp:
meta_obj: JSONDictType = { meta_obj: JSONDictType = {
'parser': self.parser_name, 'parser': self.parser_name,
'timestamp': self.run_timestamp.timestamp() 'timestamp': self.run_timestamp.timestamp(),
'slice_start': self.slice_start,
'slice_end': self.slice_end
} }
if self.magic_run_command: if self.magic_run_command: