5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Elasticsearchで見る検索エンジンの仕組み(2): Kibanaインストール編

Last updated at Posted at 2022-07-03
[前回] Elasticsearchで見る検索エンジンの仕組み(1): Elasticsearchインストール編

はじめに

前回は、Elasticsearchをインストールしました。
今回は、Kibanaをインストールし、クエリ実行します。

Kibanaとは

  • フロントエンドアプリで、Elasticsearchでインデックスされたデータに対し検索と可視化を行う
    • クエリを実行し、データを検索
    • チャートでデータを視覚的に分析
  • Elastic Stackクラスターを監視/管理/保護するためのユーザーインターフェース
  • Githubのソースコードリポジトリ

Kibanaをインストール

  • Windows版Kibanaをダウンロード

  • zipを解凍し、kibana-8.3.1フォルダーを作業フォルダーに移動

    • C:\es\kibana-8.3.1
  • 環境変数を設定

    • KIBANA_HOMEを追加(上記の導入フォルダー)
      • C:\es\kibana-8.3.1
    • PATH%KIBANA_HOME%\binを追加

Kibanaを起動

  • Elasticsearchを起動(起動していない場合)
PS C:\es> elasticsearch
  • Kibanaを実行
PS C:\es> kibana

ブラウザからKibanaに接続

  • http://localhost:5601/にアクセス

image.png

  • Kibana起動ターミナルに表示される認証コードを、ブラウザに入力

    • Verifyボタンをクリック
      image.png
  • ブラウザで、Elasticsearchのelasticユーザとパスワードを入力し、ログイン

image.png

  • Welcome画面で、Add integrationsをクリック

image.png

  • Integrations画面が表示される

image.png

Dev Toolsを使ってみる

  • 左サイドバーからDev Toolsをクリック

image.png

  • コンソールに、クエリを記載し、実行ボタン▶をクリック
    • ドキュメントをインデクシング
    • ドキュメントを取得
# index a doc
PUT index/_doc/1
{
  "body": "here"
}

# and get it ...
GET index/_doc/1
  • コンソールの右に、クエリ結果が表示される
    image.png

おわりに

Kibanaをインストールし、クエリを実行してみました。
次回は、さまざまなクエリを実行してみます。お楽しみに。

[次回] Elasticsearchで見る検索エンジンの仕組み(3): インデックス/トークナイズ編

5
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?