diff options
author | gennyble <gen@nyble.dev> | 2025-10-14 15:41:24 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2025-10-14 15:41:24 -0500 |
commit | 68a045dd365f2fc91299d4cc717912f61473c9fe (patch) | |
tree | edc3517f9e8233485a729ddbd22db0759ae56992 | |
parent | 40135f81b596a10495096234383a24819dd81f55 (diff) | |
download | awake-68a045dd365f2fc91299d4cc717912f61473c9fe.tar.gz awake-68a045dd365f2fc91299d4cc717912f61473c9fe.zip |
add cpu and net graph to subcommand
-rwxr-xr-x | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 99ab22f..e381e55 100755 --- a/src/main.rs +++ b/src/main.rs @@ -105,6 +105,8 @@ async fn main() { match std::env::args().nth(1).as_deref() { Some("graph") => { gatherer::make_mem_graph(&state); + gatherer::make_cpu_graph(&state); + gatherer::make_net_graph(&state); } _ => (), } |