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