How can i get an explicit Field from this Example

Hello People, i just transferred this Example into Elastic, and i am trying to get a specific Field from it using Kibana Dev Tools.
When i write this : GET ituconsist31/_search , it shows me all Docs i sent (848 Hits) like below:
{
"took": 6,
"timed_out": false,
"_shards": {
"total": 3,
"successful": 3,
"failed": 0
},
"hits": {
"total": 848,
"max_score": 1,
"hits": [
{
"_index": "ituconsist31",
"_type": "logs",
"_id": "AWWOzghCM3cABuwEexEc",
"_score": 1,
"_source": {
"path": "C:\Users\shilaneh\Desktop\ELK\input test2.log",
"@timestamp": "2018-08-31T07:06:27.898Z",
"@version": "1",
"host": "NB-909758018",
"parsedJson": {
"updatedAfterAuctionEnd": true,
"itemTitle": "For IBM Lenovo ThinkPad L520 Series 5017-4PC 15.6" SCREEN",
"originalEbayItem": {
"GetItemResponse": {
"Item": {
"ListingDetails": {
"HasPublicMessages": false,
"BindingAuction": false,
"ConvertedStartPrice": {
"currencyID": "EUR",
"content": {
"$numberDouble": "47.78"
}
},
"HasReservePrice": false,
"EndTime": "2018-02-26T01:09:22.000Z",
"HasUnansweredQuestions": false,
"ConvertedBuyItNowPrice": {
"currencyID": "EUR",
"content": {
"$numberInt": "0"
}
},
"StartTime": "2017-08-30T01:09:22.000Z",
"Adult": false,
"CheckoutEnabled": true,
"ViewItemURL": "http://www.ebay.de/itm/For-IBM-Lenovo-ThinkPad-L520-Series-5017-4PC-15-6-SCREEN-/132311564845",
"ViewItemURLForNaturalSearch": "http://www.ebay.de/itm/For-IBM-Lenovo-ThinkPad-L520-Series-5017-4PC-15-6-SCREEN-/132311564845"
},
"ShipToLocations": [
"Europe",
"Asia",
"CA",
"AU"
], .....
.....
.....

Now i am trying this :
GET ituconsist31/_search
{"query":
{"match":
{"EndTime": "2018-02-26T01:09:22.000Z"}}}

cause i want kibana to give me all Fields just with that EndTime, but Kibana shows me just this and dose not return any things :

{
"took": 1,
"timed_out": false,
"_shards": {
"total": 3,
"successful": 3,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}

Can Somebody please help me writing a Right Query to get that EndTime Field from this Example??
thx.

Hey @Sami_Hilaneh, how is the EndTime field mapped? If you execute a query similar to the following via DevTools, it'll display all the index mappings:

GET ituconsist31/_mappings

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