Skip to content

Commit

Permalink
Merge pull request #31 from Propfend/main
Browse files Browse the repository at this point in the history
Implementing a tui dashboard for paddler as an alternative to using the dashboard web model.
  • Loading branch information
mcharytoniuk authored Dec 5, 2024
2 parents 1670449 + 52e66a8 commit 8cce384
Show file tree
Hide file tree
Showing 10 changed files with 675 additions and 142 deletions.
179 changes: 168 additions & 11 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ askama = { version = "0.12.1", optional = true }
askama_actix = { version = "0.14.0", optional = true }
mime_guess = { version = "2.0.5", optional = true }
rust-embed = { version = "8.5.0", optional = true }
itertools = "0.13.0"
color-eyre = "0.6.3"
time = "0.3.36"
chrono = "0.4.38"

[features]
default = ["statsd_reporter"]
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ esbuild: node_modules
resources/css/reset.css \
resources/css/page-dashboard.css \
resources/ts/controller_dashboard.tsx \
;

.PHONY: run.agent
run.agent: esbuild
Expand Down
2 changes: 1 addition & 1 deletion src/balancer/upstream_peer_pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{

#[derive(Serialize, Deserialize)]
pub struct UpstreamPeerPool {
agents: RwLock<Vec<UpstreamPeer>>,
pub agents: RwLock<Vec<UpstreamPeer>>,
}

impl UpstreamPeerPool {
Expand Down
Loading

0 comments on commit 8cce384

Please sign in to comment.