The Professional GUI for
Elasticsearch

Explore your data with a high-performance, open-source dashboard.
Visual analytics, advanced queries, and cluster monitoring in one place.

Key Capabilities

🔌

Smart Proxy

Built-in Node.js proxy server eliminates CORS headaches, allowing you to connect to any cluster instantly without configuration.

📂

Multi-Connection

Seamlessly switch between local, staging, and production clusters. Your environments are organized and accessible.

📊

Visual Analytics

Instantly grasp your data shape with beautiful charts for index statistics, storage trends, and cluster health metrics.

Power Console

Execute raw queries with smart autocomplete, history tracking, split-screen views, and cURL import support.

📝

Document Editor

Full CRUD operations with a rich JSON editor. Create, update, and manage documents with confidence and safety.

🐳

Docker Ready

Deploy anywhere in seconds. Our highly optimized Docker image gets you up and running with a single command.

Installation Options

Run from Source

Ideal for development. Requires Node.js installed.

bash
# Clone repository git clone https://github.com/fuykun/ElasticScope.git cd ElasticScope # Install dependencies npm install # Start dev server npm run dev:all

Pull from Docker Hub

The fastest way to run ElasticScope without local dependencies.

bash
# Run latest image docker run -d -p 3000:3000 -p 5000:5000 fuykun/elasticscope:latest

Build Locally

Compile your own container image from source.

bash
# Clone & Enter git clone https://github.com/fuykun/ElasticScope.git cd ElasticScope # Build Image docker build -t elasticscope . # Run Container docker run -d -p 3000:3000 -p 5000:5000 elasticscope

Run with Compose

The easiest way to start the full stack, including a demo Elasticsearch cluster.

bash
# Clone & Enter git clone https://github.com/fuykun/ElasticScope.git cd ElasticScope # Option 1: App Only docker compose up -d # Option 2: Full Stack (App + Demo Elastic + Seed Data) docker compose --profile with-es up -d

Open Source

ElasticScope is free, open, and built by developers like you.