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!

Stay Connected: Your Guide to July Tech Talks, Office Hours, and Webinars!

What are Community Office Hours?Community Office Hours is an interactive 60-minute Zoom series where ...

Updated Data Type Articles, Anniversary Celebrations, and More on Splunk Lantern

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

A Prelude to .conf25: Your Guide to Splunk University

Heading to Boston this September for .conf25? Get a jumpstart by arriving a few days early for Splunk ...