michalzuber
michalzuber

Reputation: 5215

Query events greater doesn't show results

I'm trying to query events where 'total > 500', but it doesn't work correctly. enter image description here Microanalysis for field total says it's type is long. enter image description here

I imported from CSV, than mutated to integer

mutate {
  convert => [ "total", "integer" ]
}

Upvotes: 1

Views: 684

Answers (1)

michalzuber
michalzuber

Reputation: 5215

Finally found the solution

total:>500

More info at Lucene Query String Elasticsearch "less than or equal to"[URI Search]

Upvotes: 2

Related Questions