Thank you very much for the implementation of this elasticsplunk interface.
Unfortunaly there is a small issue when executing the code in elasticsplunk.py (line 256):
if self.scan:
res = ....
Even if defined as bool in splunk, in python self.scan is a string and the if statement therefore always evaluates to true - the else branch is never executed. If you substitute it e.g. with
Thank you very much for the implementation of this elasticsplunk interface. Unfortunaly there is a small issue when executing the code in elasticsplunk.py (line 256):
Even if defined as bool in splunk, in python
self.scan
is a string and the if statement therefore always evaluates to true - the else branch is never executed. If you substitute it e.g. witheverything works fine.