39

I am trying to install sense plugin for elasticsearch/kibana. I have successfully installed Kibana but when following the instruction on https://www.elastic.co/guide/en/sense/current/installing.html I type : ./kibana plugin --install elastic/sense, on the bin directory inside kibana folder, and I get :

 ERROR  unknown command plugin

  Usage: bin/kibana [command=serve] [options]

  Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch.

  Commands:
    serve  [options]  Run the kibana server
    help  <command>   Get the help for a specific command

  "serve" Options:

    -h, --help                 output usage information
    -e, --elasticsearch <uri>  Elasticsearch instance
    -c, --config <path>        Path to the config file, can be changed with the CONFIG_PATH environment variable as well. Use mulitple --config args to include multiple config files.
    -p, --port <port>          The port to bind to
    -q, --quiet                Prevent all logging except errors
    -Q, --silent               Prevent all logging
    --verbose                  Turns on verbose logging
    -H, --host <host>          The host to bind to
    -l, --log-file <path>      The file to log to
    --plugin-dir <path>        A path to scan for plugins, this can be specified multiple times to specify multiple directories
    --plugin-path <path>       A path to a plugin which should be included by the server, this can be specified multiple times to specify multiple paths
    --plugins <path>           an alias for --plugin-dir

I can't figure out why I get this error, how can I install sense plugin then ?

Cœur
  • 37,241
  • 25
  • 195
  • 267
David Geismar
  • 3,152
  • 6
  • 41
  • 80

6 Answers6

59

As wuxiwei said, Sense was renamed to Console and it is already available on Kibana 5.*. In Kibana, just click on Dev Tools:

enter image description here

Community
  • 1
  • 1
Montenegrodr
  • 1,597
  • 1
  • 16
  • 30
  • To fully answer the question for those following along with the official guide like the OP was (https://www.elastic.co/guide/en/elasticsearch/guide/current); click the Settings icon right of "VIEW IN SENSE" and paste the following URL : http://localhost:5601/app/kibana#/dev_tools/console That way the button will work as expected and you can follow along with all the examples :) – Stan Smulders Nov 24 '18 at 15:02
22

Sense was renamed to Console and is built into Kibana 5. You can find it by clicking on the Dev Tools application.

wuxiwei
  • 221
  • 1
  • 3
5

Sense is now included as Console in Kibana 5.0. You can view the following link: https://github.com/elastic/sense/blob/master/README.md

There is no need of installing sense seprately, as it is now included as Console.
elasticsearch and kibana should be running then Console can be found on :
http://localhost:5601/app/kibana#/dev_tools/console

Shivangi Gupta
  • 194
  • 1
  • 10
0

Manual Downloaded it Kibana’s bin/plugin script requires direct internet access for downloading and installing Sense. If your server doesn’t have internet access, you can download the Sense tar file from the following link: https://download.elasticsearch.org/elastic/sense/sense-latest.tar.gz

Once downloaded you can install Sense using the following command:

$ bin/kibana plugin -i sense -u file:///PATH_TO_SENSE_TAR_FILE
Phonix
  • 2,010
  • 18
  • 27
0

I am using kibana 6.5.4 and now we use Dev Tools instead of using sense plugin. you can input: http://127.0.0.1:5601/app/kibana after starting your new version of kibana services and you will find Dev Tools on the left side.

Z.LI
  • 369
  • 3
  • 11
0

It was renamed to Console. After you start Kibana, you can easily browse Console directly from http://localhost:5601/app/kibana#/dev_tools/console

Muhammad Soliman
  • 21,644
  • 6
  • 109
  • 75