reportedMaxRss property

int get reportedMaxRss

Process-lifetime peak as reported by the samples themselves.

Implementation

int get reportedMaxRss =>
    samples.map(maxRssOf).reduce((a, b) => a > b ? a : b);