Ram usage by Application
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2021
04:49 AM
07-13-2021
04:49 AM
Ram usage by Application
Hello,
I need to implement the Memory consumption meter for my tests and I wonder why my code shows me a different results than Windows Task Manager.
My code (Python):
def ram_usage(var_name):
memory_usage = Sys.MemUsage
Log.Message("Total memory usage:" + str(memory_usage) + "%")
app_memory_usage = Sys.Process("MyApp").MemUsage
Log.Message("App memory usage:" + str(arena_memory_usage) + "kBytes")
Project.Variables.VariableByName[var_name] = app_memory_usage
Should I use another methods to obtain RAM consumption ?
Best Regards,
Michal
Solved! Go to Solution.
Labels:
- Labels:
-
Script Extensions
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2021
11:20 AM
07-13-2021
11:20 AM
Hi Michal,
Both Task Manager and Sys.MemUsage provide pretty rough figures.
If you need to better monitor your tested application I would suggest to consider performance counters: https://support.smartbear.com/testcomplete/docs/testing-with/advanced/monitoring-performance/index.h...
Regards,
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
/Alex [Community Champion]
____
[Community Champions] are not employed by SmartBear Software but
are just volunteers who have some experience with the tools by SmartBear Software
and a desire to help others. Posts made by [Community Champions]
may differ from the official policies of SmartBear Software and should be treated
as the own private opinion of their authors and under no circumstances as an
official answer from SmartBear Software.
The [Community Champion] signature is assigned on quarterly basis and is used with permission by SmartBear Software.
https://community.smartbear.com/t5/Community-Champions/About-the-Community-Champions-Program/gpm-p/252662
================================
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-21-2021
04:11 AM
07-21-2021
04:11 AM
