diff --git a/script/histogram b/script/histogram index b9885fbc006d9cbd284211a705d261041dae1630..3a499066dee8601116b94a70d05aca3fa07645ab 100755 --- a/script/histogram +++ b/script/histogram @@ -28,7 +28,7 @@ def parse_log_file(file_path): data = {'measurement': [], 'time': [], 'unit': [], 'log_file': []} with open(file_path, 'r') as file: for line in file: - if ':' not in line: + if 'duration:' not in line: continue parts = line.strip().split(': ')