summaryrefslogtreecommitdiff
path: root/scripts/profiling/doc_put_memory_usage/get-mem.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/profiling/doc_put_memory_usage/get-mem.py')
-rwxr-xr-xscripts/profiling/doc_put_memory_usage/get-mem.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/profiling/doc_put_memory_usage/get-mem.py b/scripts/profiling/doc_put_memory_usage/get-mem.py
new file mode 100755
index 00000000..d64875fc
--- /dev/null
+++ b/scripts/profiling/doc_put_memory_usage/get-mem.py
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+
+
+import psutil
+import time
+
+
+delta = 50 * 60
+start = time.time()
+
+while True:
+ now = time.time()
+ print "%s %s" % (now - start, psutil.phymem_usage().used)
+ time.sleep(0.1)
+ if now > start + delta:
+ break