INDEXING Python Dict - Date Issue

Hello, i am trying to index a list of dicts(releases is a list of dicts) containing dates, but when i see the data in kibana, the dict which don't have date value ar not shown. Can you please help? Maybe if i try to index a json with the dicts, any recomandation

def elastic(releases):
"""Indexes the data from list releases using Elastic Search """
es = Elasticsearch(host='mycomp', port=9200)
index = 'index7_index_index'
es.indices.create(index=index)
for entry in releases:
es.index(index=index, doc_type='ims_entry', id=entry['ItemId'], body=entry)

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