Also look at db times

Signed-off-by: fly <merspieler@airmail.cc>
This commit is contained in:
fly 2019-12-28 19:39:19 +00:00
parent 63da2ac717
commit 459e354704

View file

@ -69,6 +69,9 @@ if read_src:
match = re.findall("SpawnPoolWorker-\d+ root INFO +Time used in seconds for (.*): (\d+\.\d+)", line)
if match != []:
times.append(match[0])
match = re.findall("SpawnPoolWorker-\d+ root INFO +(Reading OSM .* data for \['.*'\]) from db took (\d+\.\d+) seconds.", line)
if match != []:
times.append(match[0])
except:
print("err")
sys.exit(1)