parseable
parseable copied to clipboard
Parseable is an observability platform built for the modern - cloud native, AI era.
Would be cool if you could get `parseable` included as a sink for `vector` https://vector.dev/docs/reference/configuration/sinks/
Fixes #XXXX. ### Description This PR has: - [ ] been tested to ensure log ingestion and log query works. - [ ] added comments explaining the "why" and the...
Fixes #224 . ### Description Optimize release builds without impacting compile times. The alternatives include: - Full/Fat LTO - More codegen-units With single codegen-unit we make the compilation a bit...
User should be able to set environment variables to integrate their Kafka cluster with Parseable. - Decide which env vars are needed for this integration. - Use a Rust Kafka...
Hi, Since upgrading to 1.5.0, we get the following error message: ``` parseable logs : called `Option::unwrap()` on a `None` value thread 'actix-rt|system:0|arbiter:2' panicked at server/src/metadata.rs:368:52: called `Option::unwrap()` on a...
During ingestion we accept a batch of events but still ingest them sequentially. Try to optimize that flow to improve ingestion.
Replace as many `unwrap()` as possible and replace them with either `expect()` or `Err()`
### Description The query server takes quite a while to process incoming requests. But, most load balancers timeout before the computation can be completed. As a temporary fix, this PR...
Please consider supporting `systemd-journal-remote` for log ingestion. Docs: https://systemd.io/JOURNAL_EXPORT_FORMATS/#journal-export-format https://www.freedesktop.org/software/systemd/man/systemd-journal-upload.service.html# https://www.freedesktop.org/software/systemd/man/systemd-journal-remote.service.html# Example from parseable "competitor": https://sematext.com/docs/logagent/input-plugin-journald-upload/ The core benefit is that `systemd-journal-remote` is clearly available out-of-the-box on many Linux platforms,...
### Description Adds API documentation using `utoipa` from within Rust code. Also generates an up-to-date openapi yaml spec as soon as the server starts up. To view the swagger page,...