web-dev-qa-db-fra.com

Impossible d'installer le plugin sense pour Kibana

J'essaie d'installer sense plugin pour elasticsearch/kibana . J'ai installé Kibana avec succès, mais en suivant les instructions fournies sur https://www.elastic.co/guide/en/sense/current/installing.html Je tape: ./kibana plugin --install elastic/sense, dans le répertoire bin du dossier kibana, et j’obtiens:

 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

Je n'arrive pas à comprendre pourquoi je reçois cette erreur. Comment puis-je installer sense plugin?

35
David Geismar

Comme wuxiwei dit, Sense a été renommé Console et il est déjà disponible sur Kibana 5. *. Dans Kibana, cliquez simplement sur Outils de développement:

 enter image description here

51
Montenegrodr

Sense a été renommé Console et est intégré à Kibana 5. Vous pouvez le trouver en cliquant sur l’application Outils de développement.

21
wuxiwei

Sense est maintenant inclus en tant que console dans Kibana 5.0. Vous pouvez voir le lien suivant: https://github.com/elastic/sense/blob/master/README.md

Il n’est pas nécessaire d’installer le sens séparément, car il est maintenant inclus en tant que console. 
elasticsearch et kibana devraient fonctionner, alors la console est disponible sur: 
http://localhost:5601/app/kibana#/dev_tools/console

4
Shivangi Gupta

Manuel téléchargé Le script bin/plugin de Kibana nécessite un accès Internet direct pour le téléchargement et l’installation de Sense. Si votre serveur n’a pas accès à Internet, vous pouvez télécharger le fichier Sense à partir du lien suivant: https://download.elasticsearch.org/elastic/sense/sense-latest.tar.gz

Une fois téléchargé, vous pouvez installer Sense à l'aide de la commande suivante:

$ bin/kibana plugin -i sense -u file:///PATH_TO_SENSE_TAR_FILE
0
Phonix

J'utilise kibana 6.5.4 et maintenant nous utilisons Dev Tools au lieu d'utiliser le plugin sense. vous pouvez saisir: http://127.0.0.1:5601/app/kibana après avoir démarré votre nouvelle version des services kibana et vous trouverez Dev Tools à gauche.

0
Z.LI