You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if self.date_filter is not None:
parts = line.strip().split(' ', 3)
if len(parts) < 4: # the 3rd is the timestamp, the 4th is the rest of the line
return True
unix_ts = float(parts[2])
line_date = datetime.datetime.utcfromtimestamp(unix_ts).date()
if not self.__is_date_valid(line_date):
return True
if do_complete and re.search("stream-status", line) is not None:
The text was updated successfully, but these errors were encountered:
I have noticed that the date filter in tgentools is not parsing any stream event.
I think the problem is in this snippet of code:
https://github.com/shadow/tgen/blob/main/tools/tgentools/analysis.py#L362-L371
I believe the first
elif
should be anif
instead.The text was updated successfully, but these errors were encountered: