Documentationchevron_rightVPS Management

VPS Management · 4 min read

Monitoring CPU, RAM, disk and bandwidth

Understand the resource metrics shown in the control panel and set up alerts.

Last updated March 5, 2026

Overview dashboard metrics

Navigate to Instances → Manage → Overview to see:

MetricSourceNotes
CPU %Live from hypervisorRefreshes every 15 s. Shows 0 when VPS is off.
RAMAllocated capacityTotal memory assigned to your plan
DiskUsed vs. allocatedPer-VPS snapshot, refreshes every 30 s
BandwidthMonthly used vs. limitResets on your billing anniversary date

Analytics tab

The Analytics tab breaks down bandwidth into inbound and outbound components and shows network I/O in bytes/sec.

Inside the VPS

For deeper metrics, log in via SSH and use:

# CPU, process list
top
htop          # more interactive (install: apt install htop)

# RAM breakdown
free -h

# Disk usage
df -h
du -sh /var/log/*    # find large directories

# Live network stats
vnstat            # install: apt install vnstat
iftop             # install: apt install iftop

Bandwidth overage

When you approach your monthly bandwidth limit:

  • The Bandwidth progress bar turns orange at 80% and red at 95%.
  • Exceeding the limit will throttle your network speed to 1 Mbit/s.
  • You can either wait for the billing cycle to reset or purchase a bandwidth top-up through a support ticket.

Setting up Netdata for continuous monitoring

wget -O /tmp/netdata-kickstart.sh https://get.netdata.cloud/kickstart.sh
sh /tmp/netdata-kickstart.sh

Netdata runs on port 19999 by default. Access it at http://YOUR_VPS_IP:19999. Secure it with a reverse proxy and authentication before exposing it publicly.

Related

Still stuck? Customers get support from the dashboard, and anyone can open a ticket. If you are not a customer yet, VPS plans deploy in minutes with root access and a browser console.

See VPS pricing