Questions tagged [sense]

A JSON aware developer console to ElasticSearch.

A JSON aware interface to ElasticSearch. Comes with handy machinery such as syntax highlighting, autocomplete, formatting and code folding.

Once installed, you can click on the ElasticSearch icon next to your url bar to open Sense in a new tab.

Sense on Chrome Web Store:-

https://chrome.google.com/webstore/detail/sense/doinijnbnggojdlcjifpdckfokbbfpbo?hl=en

On Github:-

https://github.com/bleskes/sense

Note:- The development of Sense has moved into Elasticsearch Marvel, you can find it here: http://www.elasticsearch.org/overview/marvel/

125 questions
46
votes
3 answers

Elasticsearch query on a specific index

I have already searching this since 2 days now. I use the sense chrome plugin to be able to test my queries but I don't find how to specify on which index he is supposed to search. So my queries search on all the indexes and it isn't easy to use. I…
Kapoue
  • 847
  • 2
  • 11
  • 15
39
votes
6 answers

Can't install sense plugin for Kibana

I am trying to install sense plugin for elasticsearch/kibana. I have successfully installed Kibana but when following the instruction on https://www.elastic.co/guide/en/sense/current/installing.html I type : ./kibana plugin --install elastic/sense,…
David Geismar
  • 3,152
  • 6
  • 41
  • 80
23
votes
8 answers

how to install plugin/head for elastic search?

I have installed elastic search and its plugin head but when i enter the **url "localhost:9200/_plugin/head/"** It does not shows any thing? And I have also install marvel/SENSE for monitoring purpose. I have installed plugin/head using sudo…
deepak
  • 253
  • 1
  • 4
  • 10
21
votes
4 answers

Get last document from ElasticSearch

so I have an elastic search index and I am sending docs to it attached with a timestamp. I am wondering if there is a way to extract the last document based on the time stamp. I.e. say to elastic give me the doc with the last time. Thanks.
ScipioAfricanus
  • 1,331
  • 6
  • 18
  • 39
13
votes
1 answer

ElasticSearch Order By String Length

I am using ElasticSearch via NEST c#. I have large list of information about people { firstName: 'Frank', lastName: 'Jones', City: 'New York' } I'd like to be able to filter and sort this list of items by lastName as well as order by the…
mvcNewbie
  • 520
  • 1
  • 11
  • 23
10
votes
1 answer

elastic search 5.1 why stored_fields does not return asked field?

In Elastic Search 5.1 I am making basic request with stored_fields body argument (new name for old fields argument) for retrieving the value of a specific field. But my request give no field value in answer except _index, _type, _id and _score I…
Pipo
  • 5,170
  • 7
  • 33
  • 66
9
votes
1 answer

Updating analyzer within ElasticSearch settings

I'm using Sense (Chrome plugin) and I've managed to setup an analyzer and it is working correctly. If I issue a GET (/media/_settings) on the settings the following is returned. { "media": { "settings": { "index": { …
Mark Walsh
  • 3,241
  • 1
  • 24
  • 46
8
votes
5 answers

Elasticsearch Sense chrome plugin disabled, need to get dsl queries written in console

I am running Google Chrome Version 61.0.3163.100. I previously was running the Sense (Beta) extension version 0.9.4 until Google Chrome flagged it as malware in the extensions tab. The author of Sense has removed it from the Chrome store and it has…
6
votes
2 answers

Toast not showing on HTC Sense 3.0 lock screen

I have created a program that displays a toast every time I receive an incoming call. It is working fine on all phones I've tried - toast showing on the incoming call screen. Yesterday I updated my HTC Desire S to Sense 3.0 (Android 2.3.5) and…
Franz
  • 1,993
  • 13
  • 20
5
votes
1 answer

search multiple ids in multiple types in elasticsearch

I want to fetch documents with ids in specific type. For example right now I have wrote this query in Sense. This query is returning me all the documents with these ids in type product. POST /_search { "query": { "ids" :{ …
yousuf iqbal
  • 408
  • 2
  • 7
  • 16
5
votes
3 answers

ElasticSearch NEST Query

I'm trying to mimic a query that I wrote in Sense (chrome plugin) using NEST in C#. I can't figure out what the difference between the two queries is. The Sense query returns records while the nest query does not. The queries are as follows: var…
Nived
  • 1,804
  • 1
  • 15
  • 29
4
votes
2 answers

HTC Sense/EVO not respecting EditText color when writing

I'm having a problem on an specific device, the HTC EVO on Android 2.3.x. I think this may be a HTC Sense-specific problem. I basically have an EditText with a transparent background (#00000000) and white text, set to allow an email address input…
zeh
  • 10,130
  • 3
  • 38
  • 56
4
votes
2 answers

Using scan and scroll for elasticSearch on sense

I am trying to iterate over several documents in elasticSearch, and am using Sense (the google chrome plugin to do so). Using scan and scroll for efficiency I get the scroll id as: POST _search?scroll=10m&search_type=scan { "query": { "match_all":…
laila
  • 1,009
  • 3
  • 15
  • 27
3
votes
0 answers

How do I return entries from 24 hours ago in elastic search?

GET /document/product/_search { "query": { "match": { "filename": "Trident" } }, "range" : { "timestamp" : { "gt" : "now-24h" } } } So, I'm trying to return all data entry from the past 24 hours. In the docs, the…
Eric Chu
  • 1,649
  • 3
  • 20
  • 26
3
votes
0 answers

ElasticSearch and Sense - get results when a field is null

I'm using elasticsearch 2.3.1, and trying to write a query to filter on _score field. I need to check whether _score is not null. Here is what i've tried: REQUEST POST /_search { "from" : 0, "size" : 200, "query": { "bool": { …
ohadinho
  • 6,894
  • 16
  • 71
  • 124
1
2 3
8 9