in read_stall_retry/timeout_variation_in_pod.py [0:0]
def extract_data(logs: List[str]) -> List[List[str]]:
"""Extracts timestamp and time_taken from log lines."""
processed_data = []
for line in logs:
result = parse_log_line(line)
if result:
processed_data.append(list(result))
return processed_data