0.02
There's a lot of open issues
Ruby on Rails performance monitoring tool that provides insights into your application's performance, helping you identify bottlenecks and optimize your code for better efficiency.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

Runtime

~> 1.1, >= 1.1.4
~> 6.0
>= 8, < 10
>= 7.1.0, < 9.0.0
~> 0.0, >= 0.0.6
~> 4.0
~> 2.0.11
 Project Readme
Rails Pulse

Rails Pulse

Real-time performance monitoring and debugging for Rails applications

Gem Version Rails Version License Ruby Version


Table of Contents

  • Introduction
  • Features
  • Screenshots
  • Getting Started
    • Installation
    • Quick Setup
    • Basic Configuration
  • Authentication
    • Authentication Setup
    • Authentication Examples
  • Data Management
    • Cleanup Strategies
    • Cleanup Configuration
    • Manual Cleanup Operations
  • Separate Database Support
    • Configuration
    • Database Configuration
    • Schema Loading
  • Testing
  • Technology Stack
  • Advantages Over Other Solutions
  • License

Introduction

Rails Pulse is a comprehensive performance monitoring and debugging gem that provides insights into your Rails application's health. Built as a Rails Engine, it seamlessly integrates with your existing application to capture, analyze, and visualize performance metrics without impacting your production workload.

Features

Performance Monitoring

  • Interactive dashboard with response time charts and request analytics
  • SQL query performance tracking with slow query identification
  • Route-specific metrics with configurable performance thresholds
  • Week-over-week trend analysis with visual indicators

Developer Experience

  • Zero configuration setup with sensible defaults
  • Beautiful responsive interface with dark/light mode
  • Smart caching with minimal performance overhead
  • Multiple database support (SQLite, PostgreSQL, MySQL)

Screenshots

Rails Pulse Dashboard Rails Pulse Requests

Getting Started

Installation

Add Rails Pulse to your application's Gemfile:

gem 'rails_pulse'

Install the gem:

bundle install

Generate the installation files:

rails generate rails_pulse:install

Load the database schema:

rails db:prepare

Add the Rails Pulse route to your application:

Rails.application.routes.draw do
  mount RailsPulse::Engine => "/rails_pulse"
end

Schedule background jobs:

# Schedule to run 5 minutes past every hour. cron: 5 * * * *
RailsPulse::SummaryJob.perform_later

# Schedule to run daily. cron: 0 1 * * *
RailsPulse::CleanupJob.perform_later

Quick Setup

Rails Pulse automatically starts collecting performance data once installed. Access your monitoring dashboard at:

http://localhost:3000/rails_pulse

Basic Configuration

Customize Rails Pulse in config/initializers/rails_pulse.rb:

RailsPulse.configure do |config|
  # Enable or disable Rails Pulse
  config.enabled = true

  # Set performance thresholds for route response times (in milliseconds)
  config.route_thresholds = {
    slow: 500,
    very_slow: 1500,
    critical: 3000
  }

  # Set performance thresholds for request response times (in milliseconds)
  config.request_thresholds = {
    slow: 700,
    very_slow: 2000,
    critical: 4000
  }

  # Set performance thresholds for database queries (in milliseconds)
  config.query_thresholds = {
    slow: 100,
    very_slow: 500,
    critical: 1000
  }

  # Asset tracking configuration
  config.track_assets = false       # Ignore asset requests by default
  config.custom_asset_patterns = [] # Additional asset patterns to ignore

  # Rails Pulse mount path (optional)
  # Specify if Rails Pulse is mounted at a custom path to prevent self-tracking
  config.mount_path = nil  # e.g., "/admin/monitoring"

  # Route filtering - ignore specific routes from performance tracking
  config.ignored_routes = []    # Array of strings or regex patterns
  config.ignored_requests = []  # Array of request patterns to ignore
  config.ignored_queries = []   # Array of query patterns to ignore

  # Data cleanup
  config.archiving_enabled = true        # Enable automatic cleanup
  config.full_retention_period = 2.weeks # Delete records older than this
  config.max_table_records = {           # Maximum records per table
    rails_pulse_requests: 10000,
    rails_pulse_operations: 50000,
    rails_pulse_routes: 1000,
    rails_pulse_queries: 500
  }

  # Multiple database support (optional)
  # Uncomment to store Rails Pulse data in a separate database
  # config.connects_to = {
  #   database: { writing: :rails_pulse, reading: :rails_pulse }
  # }
end

Authentication

Rails Pulse supports flexible authentication to secure access to your monitoring dashboard.

Authentication Setup

Enable authentication by configuring the following options in your Rails Pulse initializer:

# config/initializers/rails_pulse.rb
RailsPulse.configure do |config|
  # Enable authentication
  config.authentication_enabled = true

  # Where to redirect unauthorized users (optional, defaults to "/")
  config.authentication_redirect_path = "/login"

  # Define your authentication logic
  config.authentication_method = proc {
    # Your authentication logic here
  }
end

Authentication Examples

Rails Pulse works with any authentication system. Here are common patterns:

Devise with Admin Role

config.authentication_method = proc {
  unless user_signed_in? && current_user.admin?
    redirect_to main_app.root_path, alert: "Access denied"
  end
}

Custom Authorization Logic

config.authentication_method = proc {
  current_user = User.find_by(id: session[:user_id])
  unless current_user&.can_access_monitoring?
    render plain: "Forbidden", status: :forbidden
  end
}

Data Management

Rails Pulse provides data cleanup to prevent your monitoring database from growing indefinitely while preserving essential performance insights.

Cleanup Strategies

Time-based Cleanup

  • Automatically delete performance records older than a specified period
  • Configurable retention period (default: 2 days)
  • Keeps recent data for debugging while removing historical noise

Count-based Cleanup

  • Enforce maximum record limits per table
  • Prevents any single table from consuming excessive storage
  • Configurable limits for each Rails Pulse table

Cleanup Configuration

RailsPulse.configure do |config|
  # Enable or disable automatic cleanup
  config.archiving_enabled = true

  # Time-based retention
  config.full_retention_period = 2.weeks

  # Count-based retention - maximum records per table
  config.max_table_records = {
    rails_pulse_requests: 10000,    # HTTP requests
    rails_pulse_operations: 50000,  # Operations within requests
    rails_pulse_routes: 1000,       # Unique routes
    rails_pulse_queries: 500        # Normalized SQL queries
  }
end

Manual Cleanup Operations

Run cleanup manually:

rails rails_pulse:cleanup

Check current database status:

rails rails_pulse:cleanup_stats

Schedule automated cleanup:

RailsPulse::CleanupJob.perform_later

Separate Database Support

Rails Pulse supports storing performance monitoring data in a separate database. By default, Rails Pulse stores data in your main application database alongside your existing tables.

Use a separate database when you want:

  • Isolating monitoring data from your main application database
  • Using different database engines optimized for time-series data
  • Scaling monitoring independently from your application
  • Simplified backup strategies with separate retention policies

For shared database setup (default), no database configuration is needed - simply run rails db:prepare after installation.

Configuration

To use a separate database, configure the connects_to option in your Rails Pulse initializer:

RailsPulse.configure do |config|
  # Single separate database
  config.connects_to = {
    database: { writing: :rails_pulse, reading: :rails_pulse }
  }

  # Or primary/replica configuration
  config.connects_to = {
    database: { writing: :rails_pulse_primary, reading: :rails_pulse_replica }
  }
end

Database Configuration

Add the corresponding database configurations to your config/database.yml:

# For SQLite
production:
  # ... your main database ...
  rails_pulse:
    adapter: sqlite3
    database: storage/rails_pulse_production.sqlite3
    migrations_paths: db/rails_pulse_migrate
    pool: 5
    timeout: 5000

# For PostgreSQL
production:
  # ... your main database ...
  rails_pulse:
    adapter: postgresql
    database: myapp_rails_pulse_production
    username: rails_pulse_user
    password: <%= Rails.application.credentials.dig(:rails_pulse, :database_password) %>
    host: localhost
    migrations_paths: db/rails_pulse_migrate
    pool: 5

# For MySQL
production:
  # ... your main database ...
  rails_pulse:
    adapter: mysql2
    database: myapp_rails_pulse_production
    username: rails_pulse_user
    password: <%= Rails.application.credentials.dig(:rails_pulse, :database_password) %>
    host: localhost
    migrations_paths: db/rails_pulse_migrate
    pool: 5

Schema Loading

After installation, load the Rails Pulse database schema:

rails db:prepare

This command works for both:

  • Shared database setup (default): Loads tables into your main application database
  • Separate database setup: Automatically loads tables into your configured Rails Pulse database

Testing

Rails Pulse includes a comprehensive test suite designed for speed and reliability across multiple databases and Rails versions.

Running the Complete Test Suite

# Run all tests (unit, functional, integration, instrumentation)
rails test:all

Running Individual Test Types

# Unit tests (models, helpers, utilities)
rails test:unit

# Functional tests (controllers, views)
rails test:functional

# Integration tests (end-to-end workflows)
rails test:integration

Running Individual Test Files

# Run a specific test file
rails test test/models/rails_pulse/request_test.rb

Multi-Database and Rails Version Testing

Test against multiple databases and Rails versions using the matrix task:

# Test all database and Rails version combinations locally
rails test:matrix

This command tests all combinations locally:

  • Databases: SQLite3, PostgreSQL, MySQL2 (local testing only)
  • Rails versions: 7.2, 8.0

Note: CI only tests SQLite3 + PostgreSQL for reliability. MySQL is available for local testing but excluded from CI due to flakiness.

Development Environment Setup

  1. Copy the environment template:

    cp .env.example .env
  2. Configure your database credentials in .env (for local multi-database testing):

    # PostgreSQL Configuration (used in CI + local)
    POSTGRES_USERNAME=your_username
    POSTGRES_PASSWORD=your_password
    POSTGRES_HOST=localhost
    POSTGRES_PORT=5432
    
    # MySQL Configuration (local testing only)
    MYSQL_USERNAME=root
    MYSQL_PASSWORD=your_password
    MYSQL_HOST=localhost
    MYSQL_PORT=3306
  3. Create test databases:

    # PostgreSQL
    createdb rails_pulse_test
    
    # MySQL
    mysql -u root -p -e "CREATE DATABASE rails_pulse_test;"

Manual Database Testing

Test individual databases locally:

# Test with SQLite (default)
rails test:all

# Test with PostgreSQL
DB=postgresql FORCE_DB_CONFIG=true rails test:all

# Test with MySQL (local only)
DB=mysql2 FORCE_DB_CONFIG=true rails test:all

CI Testing

GitHub Actions CI automatically tests:

  • Databases: SQLite3, PostgreSQL only (MySQL excluded for reliability)
  • Rails versions: 7.2, 8.0
  • Environment: Uses memory SQLite and PostgreSQL service

Local vs CI differences:

  • Local: Can test all 3 databases (SQLite3, PostgreSQL, MySQL2)
  • CI: Only SQLite3 + PostgreSQL for fast, reliable builds
  • Database switching: Requires FORCE_DB_CONFIG=true locally

Technology Stack

Rails Pulse is built using modern, battle-tested technologies that ensure reliability, performance, and maintainability:

Frontend Technologies

  • CSS Zero - Modern utility-first CSS framework bundled for asset independence
  • Stimulus - Progressive JavaScript framework for enhanced interactivity
  • Turbo - Fast navigation and real-time updates without full page reloads
  • Turbo Frames - Lazy loading and partial page updates for optimal performance

Data Visualization

  • Rails Charts - Rails wrapper around Apache ECharts
  • Lucide Icons - Beautiful, consistent iconography with pre-compiled SVG bundle

Asset Management

  • Pre-compiled Assets - All CSS, JavaScript, and icons bundled into the gem
  • CSP-Safe Implementation - Secure DOM methods and nonce-based asset loading
  • Build System - Node.js-based build process for asset compilation
  • Zero External Dependencies - Self-contained assets work with any Rails build system

Performance & Optimization

Development & Testing

Advantages Over Other Solutions

vs. Application Performance Monitoring (APM) Services

  • No External Dependencies: Everything runs in your Rails application with pre-compiled assets
  • Zero Monthly Costs: No subscription fees or usage-based pricing
  • Data Privacy: All performance data stays in your database(s)
  • Customizable: Full control over metrics, thresholds, and interface
  • Asset Independence: Works with any Rails build system (Sprockets, esbuild, Webpack, Vite)

vs. Custom Monitoring Solutions

  • Batteries Included: Complete monitoring solution out of the box
  • Proven Architecture: Built on Rails best practices
  • Community Driven: Open source with active development
  • Professional Design: Production-ready interface

Key Differentiators

  • Rails-Native: Designed specifically for Rails applications
  • Developer Experience: Optimized for debugging and development
  • Positive Focus: Celebrates good performance alongside problem identification
  • Contextual Insights: Deep Rails framework integration for meaningful metrics
  • Security First: CSP-compliant by default with secure asset handling
  • Zero Build Dependencies: Pre-compiled assets work with any Rails setup
  • Flexible Data Storage: Support for multiple database backends (SQLite, PostgreSQL, MySQL)

License

The gem is available as open source under the terms of the MIT License.


Built with ❤️ for the Rails community

DocumentationIssuesContributing