Splunk Dev

Сustom search comand for java

sangears
New Member

I have an example of a custom python script for displaying events from db in the splunk, help with the same example how to do this for Java?

 

 

 

import sys, time
from splunklib.searchcommands import \
    dispatch, GeneratingCommand, Configuration, Option, validators

@Configuration()
class GenerateHelloCommand(GeneratingCommand):
    count = Option(require=True, validate=validators.Integer())

    def generate(self):
        for i in range(1, self.count + 1):
            text = 'Hello World %d' % i
            yield {'_time': time.time(), 'event_no': i, '_raw': text }

dispatch(GenerateHelloCommand, sys.argv, sys.stdin, sys.stdout, __name__) 

 

 

 

Labels (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

It doesn't say you can't use Java, but one of the prerequisites at https://dev.splunk.com/enterprise/docs/devtools/customsearchcommands/createcustomsearchcmd is the Splunk SDK for Python so I conclude you must use Python for custom commands.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Why You Can't Miss .conf25: Unleashing the Power of Agentic AI with Splunk & Cisco

The Defining Technology Movement of Our Lifetime The advent of agentic AI is arguably the defining technology ...

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...