All Projects β†’ appbaseio β†’ Gem

appbaseio / Gem

Licence: apache-2.0
πŸ’Ž GUI for Data Modeling with Elasticsearch

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gem

Mirage
🎨 GUI for simplifying Elasticsearch Query DSL
Stars: ✭ 2,143 (+227.68%)
Mutual labels:  elasticsearch, elasticsearch-plugin, chrome-extension, kibana, database-gui
Elasticsearch Readonlyrest Plugin
Free Elasticsearch security plugin and Kibana security plugin: super-easy Kibana multi-tenancy, Encryption, Authentication, Authorization, Auditing
Stars: ✭ 917 (+40.21%)
Mutual labels:  elasticsearch, elasticsearch-plugin, kibana
Kibana
Your window into the Elastic Stack
Stars: ✭ 16,820 (+2471.87%)
Mutual labels:  elasticsearch, kibana
Sysmonsearch
Investigate suspicious activity by visualizing Sysmon's event log
Stars: ✭ 302 (-53.82%)
Mutual labels:  elasticsearch, kibana
Elk Docker
Docker configuration for ELK monitoring stack with Curator and Beats data shippers support
Stars: ✭ 342 (-47.71%)
Mutual labels:  elasticsearch, kibana
K8s Tew
Kubernetes - The Easier Way
Stars: ✭ 269 (-58.87%)
Mutual labels:  elasticsearch, kibana
Ansible Elk
πŸ“Š Ansible playbook for setting up an ELK/EFK stack and clients.
Stars: ✭ 284 (-56.57%)
Mutual labels:  elasticsearch, kibana
Kbn network
Network Plugin for Kibana
Stars: ✭ 339 (-48.17%)
Mutual labels:  elasticsearch, kibana
Eui
Elastic UI Framework πŸ™Œ
Stars: ✭ 3,248 (+396.64%)
Mutual labels:  elasticsearch, kibana
Pfelk
pfSense/OPNsense + ELK
Stars: ✭ 417 (-36.24%)
Mutual labels:  elasticsearch, kibana
Awesome Elasticsearch
A curated list of the most important and useful resources about elasticsearch: articles, videos, blogs, tips and tricks, use cases. All about Elasticsearch!
Stars: ✭ 4,168 (+537.31%)
Mutual labels:  elasticsearch, kibana
Es2csv
Export from an Elasticsearch into a CSV file
Stars: ✭ 465 (-28.9%)
Mutual labels:  elasticsearch, kibana
Helk
The Hunting ELK
Stars: ✭ 3,097 (+373.55%)
Mutual labels:  elasticsearch, kibana
Alerting
πŸ“Ÿ Open Distro for Elasticsearch Alerting Plugin
Stars: ✭ 259 (-60.4%)
Mutual labels:  elasticsearch, elasticsearch-plugin
Docker Compose Elasticsearch Kibana
Docker Compose for Elasticsearch and Kibana
Stars: ✭ 584 (-10.7%)
Mutual labels:  elasticsearch, kibana
Elastik Nearest Neighbors
Go to: https://github.com/alexklibisz/elastiknn
Stars: ✭ 249 (-61.93%)
Mutual labels:  elasticsearch, elasticsearch-plugin
Cryptotracker
A complete open source system for tracking and visualizing cryptocurrency price movements on leading exchanges
Stars: ✭ 336 (-48.62%)
Mutual labels:  elasticsearch, kibana
Kibi
PLEASE READ: Kibi is now "Siren Investigate", part of the Siren Platform. This code repository is only provided to facilitate code review and integration by Siren customers and cannot be successfully compiled. The code also requires Siren Federate to be installed in Elasticsearch.
Stars: ✭ 489 (-25.23%)
Mutual labels:  elasticsearch, kibana
Wazuh Kibana App
Wazuh - Kibana plugin
Stars: ✭ 212 (-67.58%)
Mutual labels:  elasticsearch, kibana
Webporter
基于 webmagic ηš„ Java ηˆ¬θ™«εΊ”η”¨
Stars: ✭ 2,598 (+297.25%)
Mutual labels:  elasticsearch, kibana

Note: GEM's main functionality has been added to dejavu project - https://github.com/appbaseio/dejavu, which is actively maintained. We recommend using that.

GEM πŸ’Ž

GUI for Elasticsearch Mappings

GEM banner image

  1. GEM: Intro
  2. Features
  3. Mapping and GEM FAQs
    1. What is a mapping?
    2. How to create a new mapping?
    3. What are the available mapping types?
    4. What other mapping parameters are available?
    5. Can a mapping be modified once it is applied?
    6. How to map a sub field?
    7. What is an analyzer?
    8. How to create a custom analyzer?
    9. How to share a GEM view?
  4. GEM Usage Examples
  5. Build Locally
  6. Get GEM
    a. Hosted
    b. Chrome Extension
    c. Elasticsearch Plugin
  7. Other Apps

GEM: Intro

GEM is a GUI for creating and managing an Elasticsearch index's datastructure mappings. ES Mappings provide an immutable interface to control how data is stored internally within Elasticsearch and how queries can be applied to it.

Mappings allow deciding things like:

  • Should a field with value '2016-12-01' be treated as a date or as a text field?
  • Should 'San Francisco' be stored as an analyzed text field to then run full-text search queries against it, or should it be kept non-analyzed for an aggregations use-case?
  • Should 'loc': ['40.73', '-73.9'] be stored as Object or should it have a geopoint datatype.

GEM takes this a step further by providing an on-the-fly mapping inference based on user provided input data.

GEM Create Mappings

Features

GEM supports three key mapping related options today:

  1. Create data mappings with an on-the-fly auto inferencing capability.

  2. Managing all the current data mappings with an option to see the raw JSON data.
    GEM View Mappings

  3. Importing new data analyzers to be later associated with field mappings.
    GEM Analyzer View

GEM keeps the entire app state in the URL which makes for easy sharing of views. And most importantly, GEM is entirely built on the client side and is available as a github hosted app.

Mapping and GEM FAQs

What is a mapping?

A mapping in Elasticsearch is like a schema in SQL. It's an API for defining how data should be internally stored within Elasticsearch indexes.

How to create a new mapping?

A mapping can be created at the time of an Elasticsearch index creation or afterwards in an explicit definition. If no mapping is specified, it is dynamically created when data is inserted into the index. See an example here.

What are the available mapping types?

string (starting v5.0 is called text), date, long, integer, short, byte, double, float, boolean are the common data types. nested, object, binary, geo_point, geo_shape, ip, completion are some of the specialized data types. You can read more about the available types on Elasticsearch docs here.

What other mapping parameters are available?

While mapping's main role is in defining data structures, it also allows defining certain indexing and querying related parameters that are commonly used. For example, analyzer allows defining which analyzer to use for indexing the text data. doc_values parameter makes indexing data available for aggregations functionality by storing it in a column-oriented fashion. Another one, null_value parameter allows replacing a null value field to be replaced with a specified value. You can read more about it here.

Can a mapping be modified once it is applied?

Starting v2.0, mappings are immutable. Once applied, they cannot be modified. In the event a mapping needs modification, the suggested alternative is to reindex data in a new index.

How to map a sub field?

Sub fields allow indexing the same field in two different ways, the idea is slightly counter intuitive if you come from a structured database background. Since Elasticsearch is a search engine primarily, data is indexed primarily in a search oriented data structure. However, it's necessary to index it in an exact format for exact search queries and aggregations. Not surprisingly, sub fields only apply to a string field.

What is an analyzer?

An analyzer is a pre-processor that is applied to data before indexing it. It does three things:

  1. Sanitizing the string input,
  2. Tokenizing the input into words,
  3. and Filtering the tokens.

Because of the focus on searching, Elasticsearch comes with a good number of standard analyzers that can be applied at mapping time to a data field. However, since there is so much room for customization, it supports an interface to add custom analyzers.

GEM also provides a GUI interface to import a user defined analyzer and lists available analyzers to pick from at mapping time.

How to create a custom analyzer?

The specs for creating a custom analyzer can be found here.

How to share a GEM view externally?

A GEM view can be shared externally (both embeddable and as a hyperlink) via the share icon at the top left screen .


GEM Usage Examples

Creating a Mapping from Data

Let's say your JSON data looks like this:

{
	"name": "geolocation data",
	"place": {
		"city": "New York",
		"country": "United States"
	},
	"location": [40.3,-74]
}

Use this magic link to view this data directly in GEM. You will need to set the app name and cluster URL fields before being able to apply these.

Creating a Direct Mapping

GEM also supports defining a type mapping directly for times when you have the exact definition.

The definition for the above data would like this:

{
	"properties": {
		"name": {
			"type": "string"
    	},
		"place": {
			"properties": {
				"city": {
					"type": "string"
				},
				"country": {
					"type": "string"
				}
			}
		},
		"location": {
			"type": "geo_point"    	
		}
	}
}

Use this magic link to view this in the GEM editor. Obviously, you will need to set the app name and cluster URL fields before being able to apply the mappings.

Import Analyzer Settings

For importing analyzer settings, select the Import Analyzer button from the button group in the bottom left screen.

You can now add one ore more analyzers in the editor view to make them available at mapping creation time. The following JSON can be used for some good defaults.

{
	"filter": {
	  "nGram_filter": {
	    "type": "edge_ngram",
	    "min_gram": 1,
	    "max_gram": 20,
	    "token_chars": [
	      "letter",
	      "digit",
	      "punctuation",
	      "symbol"
	    ]
	  }
	},
	"analyzer": {
	  "nGram_analyzer": {
	    "type": "custom",
	    "tokenizer": "whitespace",
	    "filter": [
	      "lowercase",
	      "asciifolding",
	      "nGram_filter"
	    ]
	  },
	  "body_analyzer": {
	    "type": "custom",
	    "tokenizer": "standard",
	    "filter": [
	      "lowercase",
	      "asciifolding",
	      "stop",
	      "snowball",
	      "word_delimiter"
	    ]
	  },
	  "standard_analyzer": {
	    "type": "custom",
	    "tokenizer": "standard",
	    "filter": [
	      "lowercase",
	      "asciifolding"
	    ]
	  },
	  "whitespace_analyzer": {
	    "type": "whitespace",
	    "tokenizer": "whitespace",
	    "filter": [
	      "lowercase",
	      "asciifolding"
	    ]
	  }
	}
}

Build Locally

dev branch is the bleeding edge version of gem, all new changes go here.

gh-pages branch is for the Github Pages hosted version of the app, it is just the stable version of the dev branch.

master branch is more suitable for installing gem locally. The Elasticsearch site plugin for gem uses master branch.

chrome-extension branch is for publishing the chrome extension.

Local Installation

  1. git clone https://github.com/appbaseio/gem
  2. git checkout master
  3. npm install
  4. bower install
  5. npm start (runs gem on http://localhost:8000)

And build with

$ npm run build

Contributing

The source code is in the app directory. Pull requests should be created against the dev branch.

Get GEM

GEM is available as a hosted app and as a chrome extension.

Use hosted app

or

Get the Chrome extension

or

Install As Elasticsearch Plugin

bin/plugin install appbaseio/gem

Note: To make sure you enable CORS settings for your ElasticSearch instance, add the following lines in the ES configuration file.

 http.port: 9200
 http.cors.allow-origin: "/.*/"
 http.cors.enabled: true
 http.cors.allow-headers: Authorization, X-Requested-With, Content-Type, Content-Length
 http.cors.allow-credentials: true

After installing the plugin, start elasticsearch service

elasticsearch

and visit the following URL to access it.

http://127.0.0.1:9200/_plugin/gem 

Note: If you use Elasticsearch from a different port, the URL to access and the http.cors.allow-origin value in the configuration file would change accordingly.


Other Apps

GEM is purpose built for the mapping needs of an Elasticsearch index.
dejavu is similarly purpose built for viewing your Elasticsearch index's data and perform CRUD operations, and
mirage is a GUI for composing Elasticsearch queries.

Together, these three apps form the building blocks for powering a great search experience.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].