about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2025-10-14 15:41:24 -0500
committergennyble <gen@nyble.dev>2025-10-14 15:41:24 -0500
commit68a045dd365f2fc91299d4cc717912f61473c9fe (patch)
treeedc3517f9e8233485a729ddbd22db0759ae56992
parent40135f81b596a10495096234383a24819dd81f55 (diff)
downloadawake-68a045dd365f2fc91299d4cc717912f61473c9fe.tar.gz
awake-68a045dd365f2fc91299d4cc717912f61473c9fe.zip
add cpu and net graph to subcommand
-rwxr-xr-xsrc/main.rs2
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);
 		}
 		_ => (),
 	}