Make scripts/histogram ignore lines without frame duration

Previously the script would choke on lines generated, for example, by
`cargo run`.

This just skips lines that don't contain `frame duration:`.

Co-authored-by: Antonio <antonio@zed.dev>
This commit is contained in:
Thorsten Ball 2024-01-23 12:44:29 +01:00
parent 4cccb4e3d0
commit 0db9c274aa

View file

@ -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(': ')