diff --git a/region_size.py b/region_size.py index 05896cb..3502bc0 100644 --- a/region_size.py +++ b/region_size.py @@ -28,7 +28,7 @@ if re.search("allocation request:.*source: concurrent humongous allocation", line) is not None: total += 1 - req = re.search("allocationhttps://jiradc-gti.jpmchase.net/secure/RapidBoard.jspa?rapidView=63346 request: [0-9]+", line).group() + req = re.search("allocation request: [0-9]+", line).group() allocations.append(int(re.search(r"[0-9]+", req).group())) print(f"found {total} humongous objects in {log}")