That information is not available since CPLEX does not even keep track of that. Depending on the operating system you use there are usually ways to read the high-water mark of memory consumption which can serve as an approximation to the total memory consumption.
On Windows you can use function GetProcessMemoryInfo() and for example look at the PeakWorkingSetSize field in the result.
On Linux you can read /proc/<pid>/status and look at the VmHWM field.
In both case the result can be used as an approximation of the maximum memory usage.
#CPLEXOptimizers#DecisionOptimization