{"id":13555738,"url":"https://github.com/lmenezes/elasticsearch-kopf","last_synced_at":"2025-09-27T08:30:57.969Z","repository":{"id":70739540,"uuid":"12163044","full_name":"lmenezes/elasticsearch-kopf","owner":"lmenezes","description":"web admin interface for elasticsearch","archived":true,"fork":false,"pushed_at":"2019-11-21T06:29:38.000Z","size":8870,"stargazers_count":2413,"open_issues_count":43,"forks_count":333,"subscribers_count":133,"default_branch":"master","last_synced_at":"2024-09-26T22:23:48.614Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lmenezes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2013-08-16T16:33:49.000Z","updated_at":"2024-08-28T12:03:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"d9e03404-3e5a-4aaa-b6e0-4e88fcd413d7","html_url":"https://github.com/lmenezes/elasticsearch-kopf","commit_stats":null,"previous_names":[],"tags_count":62,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmenezes%2Felasticsearch-kopf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmenezes%2Felasticsearch-kopf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmenezes%2Felasticsearch-kopf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lmenezes%2Felasticsearch-kopf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lmenezes","download_url":"https://codeload.github.com/lmenezes/elasticsearch-kopf/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234410678,"owners_count":18828266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T12:03:23.166Z","updated_at":"2025-09-27T08:30:56.199Z","avatar_url":"https://github.com/lmenezes.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Elasticsearch plugins","others","Elasticsearch"],"sub_categories":["Cluster","Tools"],"readme":"kopf\n=======================\n\nkopf is a simple web administration tool for [elasticsearch](http://elastic.co) written in JavaScript + AngularJS + jQuery + Twitter bootstrap.\n\nIt offers an easy way of performing common tasks on an elasticsearch cluster. Not every single API is covered by this plugin, but it does offer a REST client which allows you to explore the full potential of the ElasticSearch API.\n\n## Important:\n\nKopf is no longer maintained. A replacement(cerebro) has been developed and is currently maintained at [https://github.com/lmenezes/cerebro](https://github.com/lmenezes/cerebro). At this point, cerebro should be pretty much feature equivalent of kopf, with a few new features on top.\n\nVersions\n------------\n\n| elasticsearch version | branch | latest version  |\n| --------------------- | ------ | --------------- |\n| 0.90.X                | 0.90   | v0.90           |\n| 1.X                   | 1.0    | v1.6.1          |\n| 2.X                   | 2.0    | v2.1.1          |\n\nInstallation\n------------\nYou can either install a specific version(using its release tag) or the most up to date version from a given branch.\n\n####Installing on an Elasticsearch instance:\n\n```bash\n./elasticsearch/bin/plugin install lmenezes/elasticsearch-kopf/{branch|version}\nopen http://localhost:9200/_plugin/kopf\n```\n\n####Run locally:\n\n```bash\ngit clone git://github.com/lmenezes/elasticsearch-kopf.git\ncd elasticsearch-kopf\ngit checkout {branch|version}\nopen _site/index.html\n```\n\nps: local execution doesn't work with Chrome(and maybe other browsers). See more [here](http://docs.angularjs.org/api/ng.directive:ngInclude).\n\nAlternatively you can run it via `connect` which should solve the `ng-include` issue.\n\n```bash\ngit clone git://github.com/lmenezes/elasticsearch-kopf.git\ncd elasticsearch-kopf\ngit checkout {branch|version}\nnpm install\ngrunt server\n```\n\nBrowse to \u003chttp://localhost:9000/_site\u003e.\n\n####Kopf behind a reverse proxy\nExample configuration for nginx:\n```\nserver {\n  listen       8080;\n  server_name  localhost;\n\n  location ~ ^/es.*$ {\n    proxy_pass http://localhost:9200;\n    rewrite ^/es(.*) /$1 break;\n  }\n\n  location ~ ^/kopf/.*$ {\n    proxy_pass http://localhost:9200;\n    rewrite ^/kopf/(.*) /_plugin/kopf/$1 break;\n  }\n}\n```\nExample configuration for kopf(kopf_external_settings.json):\n```json\n{\n  \"elasticsearch_root_path\": \"/es\",\n  \"with_credentials\": false,\n  \"theme\": \"dark\",\n  \"refresh_rate\": 5000\n}\n```\nAccess kopf at http://localhost:8080/kopf/\n####Try it online:\n```\nhttp://lmenezes.com/elasticsearch-kopf/?location=http://localhost:9200\n```\n\n####Basic HTTP Auth support:\n```\nhttp://lmenezes.com/elasticsearch-kopf/?location=http://user:pwd@localhost:9200\n```\n\nif using https://github.com/Asquera/elasticsearch-http-basic, try:\n```\nhttp://lmenezes.com/elasticsearch-kopf/?location=http://user:pwd@localhost:9200//\n```\nThe plugin modifies the base elasticsearch response and therefore this workaround is needed.\n\nScreenshots\n------------\n####cluster overview\n![cluster overview](imgs/cluster_view.png)\n\n####header reflects cluster state\n![cluster state](imgs/cluster_state.png)\n\n####REST Client\n![rest client](imgs/rest_client.png)\n\n####aliases management\n![aliases management](imgs/aliases.png)\n\n####warmers management\n![warmers management](imgs/warmer.png)\n\n####percolator\n![percolator](imgs/percolator.png)\n\n####snapshots management\n![snapshots management](imgs/snapshot.png)\n\n####analysis api\n![analysis api](imgs/analysis.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmenezes%2Felasticsearch-kopf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flmenezes%2Felasticsearch-kopf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flmenezes%2Felasticsearch-kopf/lists"}