-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bottlecap): generate file descriptor and threads enhanced metrics (
#453) * add fd and threads enhanced metrics * clippy fixes * fixes * rename var
- Loading branch information
1 parent
56306a5
commit 72181b1
Showing
25 changed files
with
566 additions
and
20 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
pub const PROC_NET_DEV_PATH: &str = "/proc/net/dev"; | ||
pub const PROC_STAT_PATH: &str = "/proc/stat"; | ||
pub const PROC_UPTIME_PATH: &str = "/proc/uptime"; | ||
pub const PROC_PATH: &str = "/proc"; | ||
|
||
pub const LAMDBA_NETWORK_INTERFACE: &str = "vinternal_1"; | ||
pub const LAMBDA_FILE_DESCRIPTORS_DEFAULT_LIMIT: f64 = 1024.0; | ||
pub const LAMBDA_EXECUTION_PROCESSES_DEFAULT_LIMIT: f64 = 1024.0; |
Oops, something went wrong.