Skip to content

Commit

Permalink
change endpoint
Browse files Browse the repository at this point in the history
it returns raw data, not a flamegraph
  • Loading branch information
trinity-1686a committed Jul 3, 2024
1 parent e70653c commit 0b00267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickwit/quickwit-serve/src/developer_api/mprof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use warp::{Filter, Rejection};

pub(crate) fn mprof_handler(
) -> impl Filter<Extract = (impl warp::Reply,), Error = Rejection> + Clone {
warp::path!("mprof" / "flamegraph").then(get_memory_map)
warp::path!("mprof" / "raw").then(get_memory_map)
}

#[cfg(feature = "pprof")]
Expand Down

0 comments on commit 0b00267

Please sign in to comment.