I'm migrating my py 2.7 existing repo to py 3.7 currently working on Google App Engine.
I found that a runtime library (Runtime Utilities API) which is extensively used in the project.
from google.appengine.api.runtime import runtime
import logging
logging.info(runtime.memory_usage())
This will output memory usage statistics, where the numbers are expressed in MB. For example:
current: 464.0859375
average1m: 464
average10m: 379.575
I'm trying to find its alternative library compatible with python 3.7 but don't found any from GAE. Can somebody please help with this. Is there any replacement from the Google side which I'm not aware of?