metrics: go back to cmd!
This commit is contained in:
parent
2fdde98b5c
commit
cb35d3a05a
@ -3,7 +3,6 @@
|
||||
env,
|
||||
io::Write as _,
|
||||
path::Path,
|
||||
process::{Command, Stdio},
|
||||
time::{Instant, SystemTime, UNIX_EPOCH},
|
||||
};
|
||||
|
||||
@ -82,11 +81,9 @@ fn measure_analysis_stats(&mut self, bench: &str) -> Result<()> {
|
||||
}
|
||||
fn measure_analysis_stats_path(&mut self, name: &str, path: &str) -> Result<()> {
|
||||
eprintln!("\nMeasuring analysis-stats/{}", name);
|
||||
let output = Command::new("./target/release/rust-analyzer")
|
||||
.args(&["analysis-stats", "--quiet", "--memory-usage", path])
|
||||
.stderr(Stdio::inherit())
|
||||
.output()?;
|
||||
let output = String::from_utf8(output.stdout)?;
|
||||
let output =
|
||||
cmd!("./target/release/rust-analyzer analysis-stats --quiet --memory-usage {path}")
|
||||
.read()?;
|
||||
for (metric, value, unit) in parse_metrics(&output) {
|
||||
self.report(&format!("analysis-stats/{}/{}", name, metric), value, unit.into());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user