Hi
I am trying to call RESTful service by sending "POST" request to the following URL using postman...please see the request and response below.
The response has no results returned...but when I try same query in Kibana, it returns with results.
No idea whats going on? What am I missing.
URL : http://:9200//_search
Method: POST
**Request:**
{
"query": {
"bool": {
"must": [
{
"query_string": {
"query": "logmsg: "ZDMNS9T240"",
"analyze_wildcard": true
}
}, {
"range": {
"@timestamp": {
"gte": 1523988363773,
"lte": 1524002763773,
"format": "epoch_millis"
}
}
}
]
}
}
}
Response:
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 0,
"successful": 0,
"failed": 0
},
"hits": {
"total": 0,
"max_score": 0,
"hits": []
}
}