-
Notifications
You must be signed in to change notification settings - Fork 186
FAQ
Carsten König edited this page Aug 4, 2025
·
13 revisions
Elasticvue always has full support for the two latest major versions of elasticsearch. Currently this means 8.x, 7.x.
Older versions of elasticsearch also work, but because of missing APIs not all features of elasticvue might be fully supported.
- English
- Chinese
- French
- Italian
- Russian
- Japanese
Wiki: Access clusters using SSL
No. Users will always be able to change things by using the REST API.
Login with a user with reduced privileges, e.g. by using a role like this:
{
"cluster": [
"monitor"
],
"indices": [
{
"names": [
"*"
],
"privileges": [
"monitor",
"read",
"view_index_metadata"
]
}
]
}