-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #902 from iduartgomez/186464436-expose-metrics
186464436 - Create monitoring UI tool for observing network behaviour
- Loading branch information
Showing
99 changed files
with
9,470 additions
and
1,622 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use std::process::Command; | ||
|
||
fn main() { | ||
let status = Command::new("flatc") | ||
.arg("--rust") | ||
.arg("-o") | ||
.arg("src/generated") | ||
.arg("../../schemas/flatbuffers/topology.fbs") | ||
.status(); | ||
if let Err(err) = status { | ||
println!("failed compiling flatbuffers schema: {err}"); | ||
println!("refer to https://github.com/google/flatbuffers to install the flatc compiler"); | ||
} else { | ||
let _ = Command::new("cargo").arg("fmt").status(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.