Calaca
Trono
Calaca は、Elasticsearch 用の美しく使いやすい検索 UI です。ドキュメントをすばやく検索する必要があり、難しい設定や使用を必要としない場合に最適です。
config.jsで、Elasticsearch クラスターに一致するように構成を変更します。
/* Configs */
url: "http://localhost:9200" //Cluster http url
index_name: "twitter" //Index name or comma-separated list
type: "tweet" //Type
size: 10 //Number of results displayed at a time
search_delay: 500 //Delay between actual search request in ms
Index.htmlのresult.
ES ドキュメントから表示したいフィールド名。ドット表記を使用すると、 result.transactions.time
などのネストされたフィールドにアクセスできます。
< h2 > {{result.name}} </ h2 >
< p > {{result.description}} </ p >
elasticsearch ホーム ディレクトリから elasticsearch プラグインとしてインストールすることもできます。 config.jsとIndex.htmlにも同じ構成の更新が必要です。
ここでは ElasticSearch バージョン 2.x をサポートしています
bin/plugin install romansanchez/calaca
URL: http://your-host:9200/_plugin/calaca/ にアクセスするとアクセスできるようになります。
以下の CSS クラスを実装することで、Calaca の外観と雰囲気を簡単に変更できます。
. title
. search-box
. no-results
. results
. result
http.cors.enabled: true
とhttp.cors.allow-origin: "*"
をelasticsearch.yml
に追加します。 1.2.1
@rooomansanchez
クロス
マサチューセッツ工科大学