MineFixTools server utility lab
Optimization 2 min read Updated

Minecraft Server Performance Audit Guide

Run a Minecraft server performance audit covering TPS, MSPT, Spark profiles, plugins, entities, chunks, configs, JVM flags, backups, and capacity limits.

A performance audit is a structured review of how your Minecraft server behaves under real load. It keeps you from guessing.

Audit Inputs

Collect:

| Input | Why it matters | | --- | --- | | TPS and MSPT | Main performance health | | Spark profile | Shows where tick time goes | | Plugin list | Finds risky features and dependencies | | server.properties | View distance and simulation distance | | Paper/Spigot/Purpur configs | Entity, chunk, and behavior controls | | World notes | Farms, villagers, borders, resource worlds | | Hardware info | CPU, RAM, storage, host type |

Step 1: Baseline

Record normal peak player count, average MSPT, worst spikes, and the time lag usually happens. Do not tune from an empty-server profile.

Use Spark during the problem window.

Step 2: Classify the Bottleneck

| Profile points to | Next action | | --- | --- | | Plugins | Find laggy plugins | | Entities | Entity lag | | Chunks | Chunk lag | | Hoppers | Optimize hoppers | | Villagers | Optimize villagers | | CPU | High CPU fix |

Step 3: Review Settings

Check:

  1. View distance.
  2. Simulation distance.
  3. Mob spawn limits.
  4. Entity activation ranges.
  5. Hopper behavior.
  6. Backup schedule.
  7. Plugin update intervals.

Use the server.properties generator and JVM flag generator for baseline comparisons.

Step 4: Produce an Action List

Separate actions into:

  1. Immediate safe changes.
  2. Changes needing player notice.
  3. Staging-only tests.
  4. Host or hardware decisions.
  5. Long-term server rules.

An audit is successful when it produces fewer guesses and clearer priorities.

FAQ

When should I run a performance audit?

Run one before launch, after major plugin changes, before increasing slots, and whenever recurring lag appears.

How long does an audit take?

A useful first audit can take 30 to 60 minutes, but deeper plugin or world investigations may take longer.

Should I change settings during the audit?

Collect baseline evidence first. Then change one area at a time and compare results.

Related Tools

Related Articles