Model.hm_gethistorymemoryusage#
- Model.hm_gethistorymemoryusage()#
Returns the current amount of memory used for recording history.
- Returns:
hwReturnStatus- Status objectHmQueryResult- Result object containing the output values:memoryUsage (str)
Example#
Get the maximum amount of memory used for record history#import hm import hm.entities as ent model = hm.Model() _, result = model.hm_gethistorymemoryusage() print("memoryUsage", result.memoryUsage)