about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2024-05-02 11:48:53 +0200
committerBaitinq <[email protected]>2024-05-02 11:48:53 +0200
commitf26d27186bafa775ffc0c4191419ae2394b0a8ae (patch)
treeb6963474bc381a13d93c85876d00a7cc9a8cf154
parentProperly detach bpf program and report dummy data to backend (diff)
downloadfs-tracer-f26d27186bafa775ffc0c4191419ae2394b0a8ae.tar.gz
fs-tracer-f26d27186bafa775ffc0c4191419ae2394b0a8ae.tar.bz2
fs-tracer-f26d27186bafa775ffc0c4191419ae2394b0a8ae.zip
Set default port for api connection
-rw-r--r--fs-tracer/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs-tracer/src/main.rs b/fs-tracer/src/main.rs
index 0f8835f..9a179fd 100644
--- a/fs-tracer/src/main.rs
+++ b/fs-tracer/src/main.rs
@@ -17,7 +17,7 @@ async fn main() -> Result<(), anyhow::Error> {
 
     let fs_tracer_server_host = env::var("FS_TRACER_SERVER_HOST")
         .expect("FS_TRACER_SERVER_HOST must be set");
-    let url = format!("http://{fs_tracer_server_host}/payload");
+    let url = format!("http://{fs_tracer_server_host}:9999/payload");
 
     // Bump the memlock rlimit. This is needed for older kernels that don't use the
     // new memcg based accounting, see https://lwn.net/Articles/837122/