Elasticsearch

GAGOS provides Elasticsearch cluster management with features similar to Elasticvue.

Connecting

  1. Open Elasticsearch window from desktop
  2. Enter cluster URL (e.g., http://localhost:9200)
  3. Enter username/password if authentication is enabled
  4. Click "Connect"

Cluster Tab

View cluster health and statistics:

Indices Tab

List Indices

View all indices with:

Index Operations

Documents Tab

Search Documents

  1. Select index from dropdown
  2. Enter search query (optional)
  3. Click "Search"
  4. Results display in table format

View Document

  1. Click on document row
  2. Full document JSON displayed in modal

Delete Document

  1. Click delete icon on document row
  2. Confirm deletion

Query Console

Execute raw Elasticsearch REST API queries:

Usage

  1. Select HTTP method (GET, POST, PUT, DELETE)
  2. Enter endpoint path (e.g., /_search)
  3. Enter request body (JSON) if needed
  4. Click "Execute"
  5. View JSON response

Example Queries

# Cluster health
GET /_cluster/health

# Search all
GET /my-index/_search
{
  "query": { "match_all": {} }
}

# Search with filter
GET /my-index/_search
{
  "query": {
    "bool": {
      "must": [
        { "match": { "status": "active" } }
      ]
    }
  }
}

# Index settings
GET /my-index/_settings

Supported Versions