Skip to content
Snippets Groups Projects
Commit 6a310c0d authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'trig-prmon-fit-npoints' into 'master'

Increase minimum number of points to estimate memory leak from prmon

See merge request atlas/athena!30813
parents c36bdea3 0601ac5b
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ def analyse_prmon(filename):
data['vmem'] = "{0:.3f}".format(convert_to_megabytes(max(vmem_v), 'kB'))
data['rss'] = "{0:.3f}".format(convert_to_megabytes(max(rss_v), 'kB'))
data['pss'] = "{0:.3f}".format(convert_to_megabytes(max(pss_v), 'kB'))
if len(time_v) < 10:
if len(time_v) < 80:
logging.info('Not enough prmon data points, skipping memory slope fitting')
return data
d_pss = find_dmem_prmon(time_v, pss_v, 'pss', filename)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment