diff options
| author | Baitinq <[email protected]> | 2024-05-02 11:48:53 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-05-02 11:48:53 +0200 |
| commit | f26d27186bafa775ffc0c4191419ae2394b0a8ae (patch) | |
| tree | b6963474bc381a13d93c85876d00a7cc9a8cf154 | |
| parent | Properly detach bpf program and report dummy data to backend (diff) | |
| download | fs-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.rs | 2 |
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/ |