A database-backed logger for use with the log crate

crates.io docs.rs

db_logger is a Rust crate providing an implementation of the log crate's logging facade to write structured log entries to a database. Just add a few lines of code to the beginning of your program and all logging will be saved for later analysis, which is especially suited to (distributed) services.

db_logger currently supports PostgreSQL and SQLite and is backed by the sqlx crate.

The latest version of db_logger is 0.1.0 and was released on 2022-04-12.

Usage

To use db_logger, you need to add a dependency to your project with the right set of features, create a database with the expected schema, and then initialize the logger during program initialization.

As a logging facade implementation, db_logger should only be depended upon from binary crates (never from libraries).

Usage with PostgreSQL

  1. Add the following to your list of dependencies in Cargo.toml:

    toml [dependencies.db_logger] version = "0.1" default-features = false features = ["postgres"]

  2. Create a PostgreSQL database and initialize it with the schemas/postgres.sql schema.

  3. Initialize the logger in your code with one of:

  4. Make sure to keep _handle alive for the duration of the program in an async context, because the handle keeps the background logging task alive.

Usage with SQLite

  1. Add the following to your list of dependencies in Cargo.toml:

    toml [dependencies.db_logger] version = "0.1" default-features = false features = ["sqlite"]

  2. Create an SQLite database and initialize it with the schemas/sqlite.sql schema.

  3. Initialize with:

    rust use db_logger::sqlite; let conn = sqlite::connect(sqlite::ConnectionOptions { uri: "file:/path/to/database?mode=rw", ..Default::default() }).await.unwrap(); let _handle = db_logger::init(conn).await;

  4. Make sure to keep _handle alive for the duration of the program in an async context, because the handle keeps the background logging task alive.

Environment configuration

db_logger recognizes the RUST_LOG environment variable to configure the maximum level of the log messages to record, the same way as the env_logger crate does.

Schema initialization

As indicated above, you should create the database and its schema by hand before establishing a connection using the reference files provided in the schemas directory. This is a one-time operation.

You also have the option of invoking the Connection::create_schema() method to initialize the database schema. You probably don't want to do this in production but this is useful if you are using ephemeral SQLite databases.

Limitations

The code in this crate was extracted from the EndBASIC cloud service and then cleaned for separate publication. This code was written as a fun experiment as part of that service and it has not received a lot of real-world stress testing. As a result, expect this to have a bunch of limitations, including: