Splunk Dev

python SDK integration with Splunk

srijondas
Explorer

I am trying to implement EventingCommand interface, and return just one custom event at the end of  processing multiple events in Splunk. I have the code written in Python and integrated. But for some reason, the code returns multiple events in Splunk.

Can someone point out what is the problem here?

 

 

import sys from splunklib.searchcommands
import dispatch, EventingCommand, Configuration

@Configuration()
    class testpython(EventingCommand):
   

    def transform(self, records):
        list1 =[{'count': 1}]
        return list1

if __name__ == "__main__": dispatch(testpython, sys.argv, sys.stdin, sys.stdout, __name__)

Labels (2)
0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...