[Media] Releasing my first rust project - Log Analyzer Pro, a blazingly fast, feature-rich TUI log analyzer

This page summarizes the projects mentioned and recommended in the original post on /r/rust

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • log-analyzer-pro

  • pariter

    Parallel iterator processing library for Rust

  • Parallel iterators: rayon or what I ended up using because I wanted to keep the original order is this amazing library: https://github.com/dpc/pariter

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • regex

    An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.

  • Initially used the same Regex object when starting a parallel iterator chain. What I saw when profiling was that the more threads were used, the slower it became. I started digging into it and I found some references of simultaneous use of Regex objects by multiple threads. For example this is in the regex GitHub (https://github.com/rust-lang/regex/blob/master/PERFORMANCE.md)

    I would guess they're asking about the log file formats that are recognized, like: weblogs, logfmt, syslog, etc... Since the name of the project is "log analyzer", people are going to relate it to existing projects like GoAccess which is a weblog analyzer and the logfile navigator which has many built-in log formats.

  • GoAccess

    GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.

  • I would guess they're asking about the log file formats that are recognized, like: weblogs, logfmt, syslog, etc... Since the name of the project is "log analyzer", people are going to relate it to existing projects like GoAccess which is a weblog analyzer and the logfile navigator which has many built-in log formats.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts