elasticsearch-kopf¶
Releases1.6.2
目前不维护,由Cerebro替代
cerebro¶
ElasticSearch Head¶
dejavu¶
功能比较¶
| fratures | dejavu | es-head | es-kopf | es-browser | kibana |
|---|---|---|---|---|---|
| Installation | Chrome extension, Docker image, Hosted app | Elasticsearch plugin, static page | Elasticsearch plugin, static page | Elasticsearch plugin (doesn't work with 2.0+) | Elasticsearch plugin |
| Modern UI | React 16.6. | jQuery 1.6.1, slightly stodgy | Angular 1.x | ExtJs, a bit stodgy | Node.JS, Hapi, Jade |
| Browser features | CRUD, data filters Read data, full-text search | ❌ | Data view for a single type | Read view, visualizations, charting | |
| Data import/export | ✔️ JSON, CSV | ❌ | ❌ | ❌ | Only export, no CSV |
| Search preview | Visually build and test search UI | ❌ | ❌ | ❌ | ❌ |
| License | MIT | Apache 2.0 | MIT | Apache 2.0 | Apache 2.0 |
ElasticDump¶
#数据导出
docker run --rm -ti -v /root/data:/tmp taskrabbit/elasticsearch-dump \
--input=http://35.187.254.75:9200/filebeat-rpclog-2021.08.16 \
--output=/tmp/elasticdump_export.json \
--type=data
docker run --rm -ti -v /root/data:/tmp taskrabbit/elasticsearch-dump \
--input=http://35.187.254.75:9200/filebeat-rpclog-2021.08.16 \
--output=/tmp/elasticdump_export_mapping.json \
--type=mapping
#数据导入
docker run --rm -ti -v /root/data:/tmp taskrabbit/elasticsearch-dump \
--input=/tmp/elasticdump_export.json \
--output=http://elastic:s1gctM4pILIK6VF8YLT9@192.168.158.162:9200/filebeat-rpclog-2021.08.16 \
--type=data