-
Notifications
You must be signed in to change notification settings - Fork 20
feat(bottlecap): generate tmp enhanced metrics #443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
shreyamalpani
merged 8 commits into
jordan.gonzalez/bottlecap/universal-instrumentation
from
shreya.malpani/tmp-enhanced-metrics
Nov 12, 2024
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f604040
generate tmp enhanced metrics
shreyamalpani a530212
fix channel stop signal
shreyamalpani 17e1c40
use tokio async task instead of thread
shreyamalpani 5295a70
statfs fix
shreyamalpani ce8bb18
fixes
shreyamalpani 8c646b4
Merge remote-tracking branch 'origin/jordan.gonzalez/bottlecap/univer…
shreyamalpani 4d63dcc
remove unused import
shreyamalpani b9fe23a
rename tmp_chan to tmp_chan_tx
shreyamalpani File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| pub mod constants; | ||
| pub mod lambda; | ||
| pub mod statfs; |
This file contains hidden or 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,25 @@ | ||
| #![allow(clippy::module_name_repetitions)] | ||
|
|
||
| use nix::sys::statfs::statfs; | ||
| use std::io; | ||
| use std::path::Path; | ||
|
|
||
| #[cfg(not(target_os = "windows"))] | ||
| /// Returns the block size, total number of blocks, and number of blocks available for the specified directory path. | ||
| /// | ||
| pub fn statfs_info(path: &str) -> Result<(f64, f64, f64), io::Error> { | ||
|
shreyamalpani marked this conversation as resolved.
|
||
| let stat = statfs(Path::new(path)).map_err(|e| io::Error::new(io::ErrorKind::Other, e))?; | ||
| Ok(( | ||
| stat.block_size() as f64, | ||
| stat.blocks() as f64, | ||
| stat.blocks_available() as f64, | ||
| )) | ||
| } | ||
|
|
||
| #[cfg(target_os = "windows")] | ||
| fn statfs_info(path: &str) -> Result<(f64, f64, f64), io::Error> { | ||
| Err(io::Error::new( | ||
| io::ErrorKind::Other, | ||
| "Cannot get tmp data on Windows", | ||
| )) | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.