When executing a query through the Splunk SDK, apparently, the results are clipped after 100 records. How to get around this limit?
I tried:
>job = service.jobs.create(qstring,max_count=0, max_time=0, count=10000) >while not job.is_ready(): time.sleep(1) >out = list(results.ResultsReader(job.results())) >print(len(out)) 100
but the same query in the splunk web interface produces over 100 rows of results.
source share