Skip to content
Carsten König edited this page May 27, 2025 · 12 revisions

Which versions of elasticsearch are supported?

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.

Which languages are supported in elasticvue?

  • English
  • Chinese
  • French
  • Russian

How to access a cluster that uses SSL?

Wiki: Access clusters using SSL

How to build elasticvue?

Wiki: Building elasticvue

Is there a read-only mode?

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"
      ]
    }
  ]
}
Clone this wiki locally