git404hub

what is asitop fr?

tlkh/asitop — explained in plain English

Analysis updated 2026-06-26

4,562PythonAudience · developerComplexity · 2/5Setup · easy

tl;dr

asitop shows live CPU, GPU, memory, and power stats for Apple Silicon Macs in the terminal, so you can see how hard your M1 or later chip is working in real time.

vibe map

mindmap
  root((asitop))
    What it monitors
      CPU usage
      GPU usage
      Memory and swap
      Power draw
    Display
      Live terminal view
      Power history chart
      Clock frequencies
    Requirements
      Apple Silicon Mac
      macOS Monterey+
      sudo access
    Install
      pip install asitop

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Monitor CPU and GPU usage while running heavy workloads like machine learning or video editing on a Mac

VIBE 2

Check real-time power consumption and clock speeds to understand performance during demanding tasks

VIBE 3

Track memory and swap usage to see if your Mac is running out of RAM under load

what's the stack?

Pythonpsutil

how it stacks up fr

tlkh/asitophas2k1/plotninegetzep/zep
Stars4,5624,5614,564
LanguagePythonPythonPython
Setup difficultyeasyeasymoderate
Complexity2/52/53/5
Audiencedeveloperdatadeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Must be run with sudo because it uses macOS powermetrics, which requires administrator access.

in plain english

asitop is a command-line performance monitoring tool for Apple Silicon Macs (the M1 and later chips). It shows live stats about how hard the processor, graphics, and memory are working, displayed in the terminal. The author built it because nothing similar existed for Apple Silicon at the time. The tool displays CPU utilization split by efficiency cores and performance cores, GPU utilization, current clock frequencies for both, memory usage including RAM and swap space, and power consumption for the CPU and GPU. It also shows a running chart of power draw and a rolling average, so you can see spikes over time rather than just a single instant reading. Some figures like maximum power limits are hardcoded estimates because Apple does not expose them through official channels on the system. Under the hood, asitop reads data from several macOS utilities. The main one is powermetrics, a built-in macOS tool that taps hardware performance counters. Because powermetrics needs administrator access, asitop must be run with sudo. It also pulls memory and swap stats from a Python library called psutil, reads CPU and core counts from sysctl, and checks GPU core count via system_profiler. Installation is done with pip, the standard Python package manager: pip install asitop. Once installed, you run it in the terminal with sudo asitop. Optional flags let you adjust how often the display refreshes, change the color theme, and set the window used for averaged readings. The README notes it only works on Apple Silicon Macs running macOS Monterey or later. asitop is lightweight by design and is meant to have minimal impact on the machine it is monitoring. It is released as an open Python project with no license specified in the README.

prompts (copy fr)

prompt 1
How do I install and run asitop to monitor my Apple Silicon Mac's CPU and GPU usage in the terminal?
prompt 2
Using asitop, how do I set a custom refresh interval and change the color theme from the command line?
prompt 3
Show me how to use asitop to check whether my M1 Mac's performance cores are running at full speed during a machine learning training job
prompt 4
How do I read the rolling power draw chart in asitop to identify when my Mac is hitting its power limits?

Frequently asked questions

what is asitop fr?

asitop shows live CPU, GPU, memory, and power stats for Apple Silicon Macs in the terminal, so you can see how hard your M1 or later chip is working in real time.

What language is asitop written in?

Mainly Python. The stack also includes Python, psutil.

How hard is asitop to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is asitop for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.