Skip to content

Commit

Permalink
update tick rate
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Sep 16, 2024
1 parent e4a85ed commit f52e15e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions oryx-ebpf/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions oryx-tui/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use crate::stats::Stats;

pub type AppResult<T> = std::result::Result<T, Box<dyn error::Error>>;

pub const TICK_RATE: u64 = 30;
pub const TICK_RATE: u64 = 40;

#[derive(Debug, Copy, Clone, PartialEq)]
pub enum FocusedBlock {
Expand Down Expand Up @@ -348,7 +348,7 @@ impl App {
)
} else {
Span::styled(
format!("{} ", filter),
format!("{} ", filter),
Style::default().light_red(),
)
}
Expand All @@ -366,7 +366,7 @@ impl App {
)
} else {
Span::styled(
format!("{} ", filter),
format!("{} ", filter),
Style::default().light_red(),
)
}
Expand All @@ -384,7 +384,7 @@ impl App {
)
} else {
Span::styled(
format!("{} ", filter),
format!("{} ", filter),
Style::default().light_red(),
)
}
Expand Down

0 comments on commit f52e15e

Please sign in to comment.