EZLogs for Rails

Activity logs for Rails — plain English, zero per-controller code.

EZLogs is a Rails activity log gem that auto-captures every HTTP request, every Sidekiq / ActiveJob run, and every ActiveRecord change, then correlates them into one plain-English card per customer action. Anyone on your team — engineers, founders, support, PMs — can read it.

What gets captured automatically

Events are correlated by request ID, current user, and resource ID. Each customer action becomes one card, not a wall of logs.

Install in 60 seconds

bundle add ez_logs_agent
# config/initializers/ezlogs.rb
EzLogs.configure do |c|
  c.api_key = ENV["EZLOGS_API_KEY"]
end

That’s it. Restart your app. No per-controller code, no model concerns, no per-job wrapper. The gem hooks into Rails’ existing instrumentation.

How is this different from PaperTrail or Audited?

PaperTrail and Audited are model-versioning gems — they let you go back and inspect a row at a given timestamp. They are great at that and EZLogs does not try to replace them. EZLogs is solving a different problem: tell me, in plain English, what one customer (or one AI agent) actually did in my app today — HTTP + jobs + DB stitched together, summarized in a sentence, readable by anyone in the company. PaperTrail+Audited gives you the rows. EZLogs gives you the story.

How is this different from Datadog or New Relic?

Those tools answer “is the system healthy?” with metrics and traces aimed at engineers debugging. EZLogs answers “what happened to my customer?” with business-level actions aimed at the whole company. We don’t compete with metrics — we’re the layer above them.

Performance and safety

Supported versions

Rails 6.1+, Ruby 3.1+. Sidekiq 6+, ActiveJob (built-in). ActiveRecord with PostgreSQL or MySQL.

Start free — 14 days →

No card required · Read-only by design

← Back to home