Skip to content

A Kibana plugin to explore Elasticsearch Topology

Notifications You must be signed in to change notification settings

isabella232/topology-ece

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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" : "topology@elastic.co", 
  "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

About

A Kibana plugin to explore Elasticsearch Topology

Resources

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 85.9%
  • CSS 8.6%
  • HTML 5.5%