-
Notifications
You must be signed in to change notification settings - Fork 170
FAQ
Carsten König edited this page May 27, 2025
·
12 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
- Russian
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"
]
}
]
}