Introduction
LesliAudit is the official audit trail and analytics engine for the Lesli Framework.
It records account activity and provides administrators with searchable operational history and usage insights.
Features
- Account activity and audit logs
- Request and navigation history
- Visitor and authenticated-user analytics
- Device and user-agent information
- Detailed views for investigating recorded activity
Try LesliAudit
Quick Start
Requirements
- A Rails application with Lesli
- SQLite by default, or PostgreSQL when preferred by the host application
Install LesliAudit
Add the engine to the host Rails application and prepare its database:
bundle add lesli_audit
bin/rails db:prepareMount the engine
Applications using Lesli's standard router mount LesliAudit automatically at /audit:
# config/routes.rb
Rails.application.routes.draw do
Lesli::Router.mount(self)
endIf the application does not use the standard Lesli router, mount the engine directly:
# config/routes.rb
Rails.application.routes.draw do
mount LesliAudit::Engine => "/audit"
endStart Rails and visit http://127.0.0.1:3000/audit:
bin/rails serverDevelopment
Clone LesliAudit into the host application's engines directory:
cd RailsApp
mkdir -p engines
git clone https://github.com/LesliTech/LesliAudit.git engines/LesliAuditReference the local engine from the host application's Gemfile:
gem "lesli_audit", path: "engines/LesliAudit"Install dependencies, prepare the host database, and start Rails:
bundle install
bin/rails db:prepare
bin/rails serverTests
From a complete Lesli development workspace, run the engine test suite from the LesliAudit directory:
cd engines/LesliAudit
bin/rails testDocumentation
Community
License
Copyright (c) 2026, Lesli Technologies, S. A.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
The complete license text is available in the license file.
