#153cars10/elasticvue: 一个用于 elasticsearch 的免费开源 GUI,您可以使用它来管理集群中的数据。它完全支持 elasticsearch 版本 `8.x` 和 `7.x`. `6.8`。生态支持很丰富,支持桌面,浏览器插件,以及通过 docker 拉起等方式
elasticvue
Elasticsearch gui for your browser https://elasticvue.com
Elasticsearch is a trademark of Elasticsearch BV, registered in the U.S. and in other countries.
Contents
About
Elasticvue is a free and open-source gui for elasticsearch that you can use to manage the data in your cluster.
It supports every version of elasticsearch, even those that are EOL. Check
the FAQ for more details.
Features
- Cluster overview
- Index & alias management
- Shard management
- Searching and editing documents
- Rest queries
- Snapshot & repository management
- ... and much more
Usage
You can use elasticvue in several ways:
Desktop App - recommended
Browser extension
Docker
You have to configure your elasticsearch cluster if you want to use elasticvue via docker
Use the existing image:
docker run -p 8080:8080 --name elasticvue -d cars10/elasticvueWhen using docker you can provide some default cluster configuration for your users. You can either set an environment
variable or provide a config file as a volume. In either case the content should be a json array of your
clusters, looking like this:
[
{
"name": "dev cluster",
"uri": "http://localhost:9200"
},
{
"name": "prod cluster",
"uri": "http://localhost:9501",
"username": "elastic",
"password": "foobar"
}
]The keys name and uri are required, username and password are optional. If you want to connect with an api key
simply use that as the password and omit the username.
Docker with default clusters in environment variable
Example using environment variable ELASTICVUE_CLUSTERS:
docker run -p 8080:8080 -e ELASTICVUE_CLUSTERS='[{"name": "prod cluster", "uri": "http://localhost:9200", "username": "elastic", "password": "elastic"}]' cars10/elasticvueDocker with default clusters in config file via volume
Example using config file volume to /usr/share/nginx/html/api/default_clusters.json:
echo '[{"name": "prod cluster", "uri": "http://localhost:9200", "username": "elastic", "password": "elastic"}]' > /config.json
docker run -p 8080:8080 -v /config.json:/usr/share/nginx/html/api/default_clusters.json cars10/elasticvueYour users will be prompted to optionally import these clusters.
Web version
You have to configure your elasticsearch cluster if you want to use elasticvue via docker
Visit https://app.elasticvue.com.
Self-hosted
You have to configure your elasticsearch cluster if you want to use elasticvue via docker
Please check the wiki for more information.
Elasticsearch configuration
You have to enable CORS to allow
connection to your elasticsearch cluster if you do not use the desktop app or the browser extensions.
Find your elasticsearch configuration (for example /etc/elasticsearch/elasticsearch.yml) and add the following lines:
# enable CORS
http.cors.enabled: true
# Then set the allowed origins based on how you run elasticvue. Chose only one:
# for docker / running locally
http.cors.allow-origin: "http://localhost:8080"
# online version
http.cors.allow-origin: /https?:\/\/app.elasticvue.com/
# and if your cluster uses authorization you also have to add:
http.cors.allow-headers: X-Requested-With,Content-Type,Content-Length,AuthorizationIf you use docker to run your elasticsearch cluster you can pass the options via environment variables:
docker run -p 9200:9200 \
-e "http.cors.enabled=true" \
-e "http.cors.allow-origin=/.*/" \
elasticsearchAfter configuration restart your cluster and you should be able to connect.
Browser Support
Any current version of Chrome, Firefox and Edge should work without issues. Safari is mostly untested so your
mileage may vary.
Troubleshooting
Before opening an issue please try to reset elasticvue to its default settings:
- Open the settings
- Download a backup of your current elasticvue data
- Click
Disconnect and reset
This will reset all your saved filters, and you have to reconnect to your cluster. Please open
an issue if your problem persists.
Comparing with other frontends
See the Wiki. Comparing to other frontends
i18n
Elasticvue is available in the following languages:
- english
- chinese
- french
- russian
- japanese
- italian
Contributing
See CONTRIBUTING.md.
License
MIT

