Getting Started

Logspace is your complete session recording and debugging platform. Capture user behavior, track errors, and debug issues with AI-powered analysis.

Chrome Extension

Record browser sessions pixel-perfectly with rrweb integration.

IDE Extensions

Analyze logs directly in VS Code, Cursor & WebStorm with AI.

Self-Hosted Platform

API server + Admin Dashboard deployed together via Docker.

JavaScript SDK

Privacy-first SDK for web apps with smart sampling.

System Requirements

Browser & Extension

  • Chrome, Edge, Brave, or Opera (v88+)
  • Manifest V3 compatibility required

IDE Environment

  • VS Code / Cursor (v1.90+) or WebStorm (2025.2+)
  • Node.js 18+ (for MCP Server)

Server Infrastructure

  • Docker Engine (v20.10+)
  • Docker Compose (v2.0+)
  • 2GB RAM Minimum (4GB Recommended)
  • 10GB Storage for logs/recordings
  • Logspace License Key
  • HTTPS Required for Production

Installation Guide

1. Chrome Extension Setup

1

Install the Extension

Visit the Chrome Web Store and add the Logspace Recorder to your browser.

Chrome extension installation page
2

Configure Server URL

Open extension settings and point it to your API server (e.g., https://api.logspace.yourcompany.com).

Extension settings configuration

2. IDE Configuration

VS Code
Cursor
WebStorm
1

Install Extension

Search for "Logspace" in your IDE's marketplace.

Terminal / Quick Open
# VS Code / Cursor
code --install-extension logspace.logspace-vscode
# WebStorm (2025.2+)
Plugins → Marketplace → Search "Logspace"
Requires Node.js 18+ for MCP server
IDE Marketplace Search
2

Authenticate

Click the Logspace icon in your activity bar and sign in to sync your sessions.

IDE Authentication Screen
3

Enable AI Features

Once authenticated, the MCP server will start automatically, enabling AI context for your coding assistant.

Try these prompts:
@logspace /explain log 123
@logspace /fix log 456
@logspace /summarize
MCP Server Status

3. Self-Hosted Platform

1

Deploy with Docker

# 1. Extract the package

tar -xzvf logspace-1.0.0.tar.gz

cd logspace-1.0.0

# 2. Load Docker Images (API + Admin Dashboard)

docker load -i logspace-api.tar

docker load -i logspace-admin.tar

# 3. Configure & Start Both Services

cp .env.example .env

docker compose up -d

Configure LICENSE_KEY and JWT_SECRET_KEY in your .env file.

Logspace requires HTTPS for production deployments.

2

Verify & Access

API Endpoint
http://localhost:9000
Admin Dashboard
http://localhost:4000
Documentation
http://localhost:9000/docs

Explore More