Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 50 additions & 1 deletion Cargo.lock

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

3 changes: 1 addition & 2 deletions doc/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,7 @@ Important:

- default is `32`
- must be greater than zero
- applies directly to thread-per-client ingest paths and current gRPC concurrency handling
- plain non-TLS `otlp-http` ingest is already serial in the current implementation
- applies to all ingest protocols (wire, otlp-http, otlp-grpc, plugin)

### `ingest.max-batches-per-second`

Expand Down
8 changes: 6 additions & 2 deletions logjetd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ license.workspace = true
clap = { version = "4.5", features = ["derive", "wrap_help"] }
colored = "3"
flate2 = { version = "1.1", default-features = false, features = ["rust_backend"] }
http = "1.0"
http-body-util = "0.1"
hyper = { version = "1", features = ["server", "http1", "http2"] }
hyper-util = { version = "0.1", features = ["tokio"] }
libc = "0.2"
libloading = "0.8"
liblogjet = { path = "../liblogjet" }
Expand All @@ -19,9 +23,9 @@ serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
rustls-pemfile = "2"
tiny_http = "0.12"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
tonic = { version = "0.14", features = ["transport", "tls-ring"] }
tokio-rustls = "0.26"

[dev-dependencies]
rcgen = "0.12"
Expand Down
Loading
Loading