{"id":13783221,"url":"https://github.com/elastic/sense","last_synced_at":"2025-05-15T15:06:12.573Z","repository":{"id":33769651,"uuid":"37426031","full_name":"elastic/sense","owner":"elastic","description":"A JSON aware developer's interface to Elasticsearch. Comes with handy machinery such as syntax highlighting, autocomplete, formatting and code folding.","archived":false,"fork":false,"pushed_at":"2025-01-30T00:49:34.000Z","size":7129,"stargazers_count":384,"open_issues_count":60,"forks_count":132,"subscribers_count":371,"default_branch":"master","last_synced_at":"2025-05-12T00:17:43.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"YMinhaj/LoginPHP","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elastic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-06-14T19:19:02.000Z","updated_at":"2025-04-25T02:35:24.000Z","dependencies_parsed_at":"2022-09-25T04:01:00.460Z","dependency_job_id":"3d1a03de-5431-4416-9c52-42546a33c95b","html_url":"https://github.com/elastic/sense","commit_stats":{"total_commits":790,"total_committers":30,"mean_commits":"26.333333333333332","dds":"0.36582278481012653","last_synced_commit":"e4b27640c79c102d1e09941c4430092522338cff"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fsense","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fsense/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fsense/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fsense/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elastic","download_url":"https://codeload.github.com/elastic/sense/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254364270,"owners_count":22058878,"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-03T19:00:16.516Z","updated_at":"2025-05-15T15:06:12.540Z","avatar_url":"https://github.com/elastic.png","language":"JavaScript","funding_links":[],"categories":["Elasticsearch developer tools and utilities"],"sub_categories":["Development and debugging"],"readme":"# HEADS UP: This repo is deprecated. Sense is now included as Console in Kibana 5.0. File issues over at [elastic/kibana](https://www.github.com/elastic/kibana)\n\n## Sense\n\nA JSON aware developer's interface to Elasticsearch. Comes with handy machinery such as syntax highlighting, API suggestions,\nformatting and code folding.\n\n### Installation\n\nSense is a Kibana app. To get up and running you will first need to download Kibana and install as instructed [here](https://www.elastic.co/downloads/kibana).\nOnce Kibana is installed, you can simply install Sense running the following command from your Kibana folder:\n\n```\n$ ./bin/kibana plugin --install elastic/sense\n```\n\nNow start your Kibana server by running:\n\n```\n$ ./bin/kibana\n```\n\nSense should be available on http://localhost:5601/app/sense (assuming Kibana defaults).\n\nFor more information and advanced setting please see the [documentation](https://www.elastic.co/guide/en/sense/current/installing.html).\n\n\n### Screenshots\n\n\n#### Handy API suggestions\n\nSense offers handy contextual suggestion to the Elasticsearch API.\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_api_suggestions.png\" width=\"400px\" title=\"API Suggestions\"\u003e\n\n#### Format validation\n\nSometimes it is hard to find that little missing comma. Sense automatically highlights and explains invalid input.\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_errors.png\" width=\"400px\" title=\"Format validation\"\u003e\n\n#### Scope collapsing\n\nWorking on a big JSON query can be distracting. Using the mouse or via a handy keyboard shortcut (Ctrl/Cmd+Option+0)\n, Sense allows you to focus on a sub section and fold others away.\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_scope_collapsing.png\" width=\"400px\" title=\"Folding\"\u003e\n\n#### Auto formatting\n\nType your commands however you want and let Sense format them for you.\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_auto_formatting_mix.png\" width=\"400px\" title=\"Auto formatting\"\u003e\n\n#### Submit multiple requests at once\n\nWhen testing or trying things out you frequently need to repeat the same sequence of commands.\nJust write them all in Sense, select and submit multiple requests to Elasticsearch.\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_multiple_requests.png\" width=\"400px\" title=\"Multiple Requests\"\u003e\n\n#### Copy and Paste cURL commands\n\nOnce done, you can copy one or more requests as cURL commands (and of course paste them back)\n\n\u003cimg src=\"https://github.com/elastic/sense/raw/master/docs/images/readme_copy_as_curl.png\" width=\"400px\" title=\"Copy As Curl\"\u003e\n\nResults in:\n\n```\n# Delete all data in the `website` index\ncurl -XDELETE \"http://localhost:9200/website\"\n\n# Create a document with ID 123\ncurl -XPUT \"http://localhost:9200/website/blog/123\" -d'\n{\n  \"title\": \"My first blog entry\",\n  \"text\":  \"Just trying this out...\",\n  \"date\":  \"2014/01/01\"\n}'\n```\n\n### Documentation\n\nVisit [elastic.co](https://www.elastic.co/guide/en/sense/current/index.html) for the full documentation.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic%2Fsense","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felastic%2Fsense","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic%2Fsense/lists"}