Im using Python Elastic Search client for my project to query es data.
I have index pattern content:log_my that I want to query, however, when i execute
log_result = self.es.search(index='content:log_my', query=self.get_query(), doc_type='example')
it result in the : in encoded
GET https://url_here/content%3Alog_my/example/_search [status:N/A request:10.025s]
Can I know how to fix on this? Thanks, I'm new on Python.