GithubHelp home page GithubHelp logo

isabella232 / topology-ece Goto Github PK

View Code? Open in Web Editor NEW

This project forked from elastic/topology-ece

0.0 0.0 0.0 11.76 MB

A Kibana plugin to explore Elasticsearch Topology

JavaScript 85.96% HTML 5.47% CSS 8.58%

topology-ece's Introduction

Build Status

Topology

alt Topology

Installation

If you don't have X-Pack security installed, you can jump to the plugin installation directly here

Create Topology user & role

Topology uses the _cat API therefore needs monitor priviledge at cluster level. With the Native Realm (X-Pack Security API) create the following role:

PUT /_xpack/security/role/topology_role
{
  "cluster": [
    "monitor"
  ],
  "indices": [
    {
      "names": [
        "*"
      ],
      "privileges": [
        "monitor"
      ]
    }
  ]
}

And then create a user mapped to the role:

POST /_xpack/security/user/topology
{
  "password" : "topology", 
  "roles" : [ "topology_role" ], 
  "full_name" : "Topo logy", 
  "email" : "[email protected]", 
  "enabled": true 
}

Please note that you can choose whatever username and password you want.

Add Topology configuration to Kibana.yml

With the user and role created, add the following topology settings to the kibana.yml file:

Minimal configuration

topology:
  elasticsearch:
    username: topology
    password: topology

Full-version

topology:
  elasticsearch:
    url: url_to_the_elasticsearch_cluser
    ssl: 
      cert: path_to_the_cert_file
      key: path_to_the_key_file
      ca: path_to_the_ca_file
      verify: boolean, whether or not the certificate should be verified
    username: topology
    password: topology

Installing plugin

Topology does not support Kibana version lower than 5.x. The topology version you will use, should be the same than the Kibana version, you just need to adapt the following command:

#Kibana >= 5.x

./bin/kibana-plugin install https://github.com/bahaaldine/topology/releases/download/major.minor.patch/topology-major.minor.patch.zip

Supported Kibana versions

This plugin is supported by:

  • Kibana 5

Features:

  • Explore indices / shards / segments topology
  • Filter indices

topology-ece's People

Contributors

bahaaldine avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.