AltFreeStack
Web Analyticsdocker-readypermissive-license

OpenReplay: the best Open Source alternative to LogRocket in 2026

OpenReplay records user sessions for replay, along with heatmaps and performance metrics, as a self-hostable alternative to LogRocket and FullStory.

License Apache-2.0 12.6k stars liveUpdated hace 2 díasWebsite GitHub Repository

Technical profile

License
Apache-2.0
Category
Web Analytics
Replaces
LogRocket, FullStory
Tech stack
GoReactPostgreSQLClickHouse

Preview

OpenReplay interface preview

Public image provided by OpenReplay on its own website.

Key features

  • Session recording and replay
  • Heatmaps and performance metrics
  • Console error capture

OpenReplay vs. LogRocket

Pros

  • No limit on recorded sessions when self-hosted

Things to consider

  • Real production installation requires several microservices

Quick Docker installation guide

Copy this docker-compose.yml, adjust the example passwords and run docker compose up -d on your server. See the full step-by-step guide →

docker-compose.yml
# OpenReplay recomienda su instalador oficial para producción
# (varios microservicios). Este es un punto de partida simplificado.
version: "3.9"
services:
  openreplay:
    image: openreplay/openreplay-quickstart:latest
    restart: unless-stopped
    ports:
      - "8080:80"
    volumes:
      - openreplay_data:/data
volumes:
  openreplay_data: