Java High level client Api Date range

I using java High level client Api
In that i using range query method to fetch date range data in that i need to normal machine time as input and it need to convert it to json date to fetch data for that what i need to do?

   	 searchRequest.indices("winlogbeat-6.5.3-2019.03.18");
   	 SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder(); 
   	 searchSourceBuilder.query(QueryBuilders.rangeQuery("@timestamp").from("2019-03-18T07:00:04.874Z").to("2019-03-18T09:52:04.641Z")); 
   	 searchRequest.source(searchSourceBuilder); 
   	 SearchResponse response = client.search(searchRequest, RequestOptions.DEFAULT);```

I'm not sure I understand the question. Do you have a full example?
Using a pure Kibana Dev Console script would be ideal as described in About the Elasticsearch category. It will help to better understand what you are doing. Please, try to keep the example as simple as possible.

A full reproduction script will help readers to understand, reproduce and if needed fix your problem. It will also most likely help to get a faster answer.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.