diff options
| -rw-r--r-- | fs-tracer/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs-tracer/src/main.rs b/fs-tracer/src/main.rs index bba16d2..9b61144 100644 --- a/fs-tracer/src/main.rs +++ b/fs-tracer/src/main.rs @@ -94,6 +94,7 @@ async fn main() -> Result<(), anyhow::Error> { match data { SyscallInfo::Write(x) => { println!("WRITE KERNEL: DATA {:?}", x); + // TODO: Batching. Also add agent key let _ = ureq::post(thread_url.as_str()) .send_string(format!("hi world! {:?}", x).as_str()) .expect("Failed to send request"); |