sozu
sozu copied to clipboard
Sōzu HTTP reverse proxy, configurable at runtime, fast and safe, built in Rust. It is awesome!
For now, querying a cluster's metrics by doing: ``` sozu --config config.toml query metrics -k MyCluster ``` does not return anything (this is addressed in #789 ), but once this...
The pull request #783 restores the querying of proxy metrics (`accept_queue`, `http_responses`, `event_loop_time`…), but leaves this problems: - Querying cluster metrics returns nothing. - Querying a list of metric names...
For now, when we query metrics… nothing appears. Also metrics enabling and disabling doesn't work. Let's fix it. - [x] fix "metrics enable" and disable and clear - [x] fix...
Here is an example of metrics formatting: ``` Worker 0 ========= +--------------------+-------+-------+ | | gauge | count | +--------------------+-------+-------+ | accept_queue.count | 0 | | +--------------------+-------+-------+ | client.connections | 0...
Hello, I try to start https server with this code. ```rust #![allow(unused_variables,unused_must_use)] #[macro_use] extern crate sozu_lib as sozu; #[macro_use] extern crate sozu_command_lib as sozu_command; extern crate time; use std::thread; use...
Hello! I think it would be useful for potentials users to declare in the README how the sozu project interprets the AGPL's meaning of a "covered work". > A "covered...
implementation for #596 It rewrites `RequestState` and `ResponseState` to reduce the number of states and hold a list of headers containing references to offfsets in the network stream (not slices...
I just installed sozu and setup my config as follows: ``` [[listeners]] address = "0.0.0.0:443" protocol = "https" tls_versions = ["TLSv1.2", "TLSv1.3"] cipher_list = "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256" [applications] [applications.AppName] protocol = "http"...
Howdy! The hosting provider I'm utilizing currently uses Sozu as a front-end load balancer (FELB) solution. It's been a great experience so far, but there is one feature from Nginx...
Hello, thanks for your work. It seems that version 0.13.6 is missing from crates.io. The last published version is 0.13.1. Is there any way you could publish the recent versions...