pumas
A nvtop-inspired command line tool for Apple Silicon Macs: aka M1, M2, ... This is basically a reimplemented version of [asitop] in Rust.
| Type | Metrics | Available | Comments | | --- | --- | --- | --- | | Utilization | CPU Clusters, GPU, ANE | ✓ | History & current values. ANE util. is measured via power | | Power | CPU, GPU, ANE, total package | ✓ | History & current values | | Frequency | CPU Clusters, GPU | ✓ | Current avg. values | | Frequency | CPU Clusters, GPU | planned | Residency distrib. histograms | | Memory | RAM & swap: size and usage | planned | Apple removed memory bandwidth from powermetrics. |
Pumas uses the built-in powermetrics
utility on macOS, which allows access to a
variety of hardware performance counters. Note that it requires sudo
to run due
to powermetrics
needing root access to run. Pumas is lightweight and has
minimal performance impact.
Pumas only works on Apple Silicon Macs on macOS Monterey and later.
This is a work in progress.
sh
brew install graelo/tap/pumas
or
sh
cargo install pumas
sh
sudo pumas run
Use the arrow keys to switch between tabs. Press Esc
, q
or x
to quit.
Overview Tab: global metrics for utilization and power consumption.
CPU Tab: per-cluster CPU utilization (with short history) and frequency (with short history)
GPU Tab: GPU utilization (with short history) and frequency (with short history)
SoC Tab: misc info about the SoC
Startup:
```sh $ pumas --help A power usage monitor for Apple Silicon.
Usage: pumas
Commands: run Run the power usage monitor generate-completion Print a shell completion script to stdout help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help -V, --version Print version ```
Pumas can run in two modes: UI mode (the default) and JSON mode.
```sh $ pumas run --help Run the power usage monitor
Usage: pumas run [OPTIONS]
Options:
-i, --sample-rate
In JSON mode, Pumas will stream metrics to stdout as JSON instead of running the UI. You can
then pipe the metrics to jq
, or create a node-exporter for Prometheus, etc.
For instance, the following command will stream the active ratio of the third CPU core of the first CPU cluster at each sample interval:
sh
$ sudo pumas run --json | jq '.metrics.e_clusters[0].cpus[2].active_ratio'
0.04624276980757713
0.11764705926179886
^C
The JSON schema and an example are available in the schema directory.
sysinfo
crate is used to measure the following:
powermetrics
is used to measure the following:
powermetrics
~~ (removed: incorrect on M2 chips)sysctl
is used to measure the following:
system_profiler
is used to measure the following:
Some information is guesstimate and hardcoded as there doesn't seem to be a official source for it on the system:
Licensed under the [MIT License].
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the MIT license, shall be licensed as MIT, without any additional terms or conditions.