Memory Usage

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

matagin

New Member
Jul 29, 2019
39
0
1
Is there a way to tell specifically how much memory a mod or plugin is using? I am running on a dedicated physical server with FTB Unleashed with Gregtech and MCPC+. Thanks.
 

Joey19982

New Member
Jul 29, 2019
68
0
0
I've never seen a way to track RAM Usage per mod, but there are multiple ways to profile mods to check their tick performance and CPU Usage.

TickThreading by nallar has some awesome commands such as /profile and /dump to check how certain blocks and mods are performing. It also makes Minecraft Mutlithreaded, which is excellent for FTB. Worth having.
MCPC+ comes with /timings, which will print some information that you can paste into this website to get information on what plugins are doing. You have to enable this in bukkit.yml
WarmRoast by sk89q is a web-based CPU Sampler that you can use to get even more specific readings about plugins/mods using the CPU. Not only can you see the mod, but you can look into which parts of it.
Alternatively to WarmRoast, you can get a JVM Snapshot as described here.

Let me know if you need help with any of that.
 

Eyamaz

New Member
Jul 29, 2019
2,373
0
0
You can do this, to an extent, with any Java Profiler, like JProfiler. I suggest at least a little bit of understanding of how java and the JVM work or you may not understand what certain things mean.

Also, the impact of mods on RAM is not a great concern. Their impact on your CPU, however, is.
 

matagin

New Member
Jul 29, 2019
39
0
1
Guys, thank you so much for awesome responses. Exactly what I needed. Thanks!