Splunk Dev

Custom command with argument as string not stanza-how to change it to be just *| cloudcidrlookup azure* ?

irom77
Explorer

I have created custom command *| cloudcidrlookup cloud=azure* but how to change it to be just *| cloudcidrlookup azure* ?

 

 

@Configuration()
class CloudCidrLookup(GeneratingCommand):
    cloud = Option(require=False)  
    ...
    def generate(self):
        if self.cloud=='azure':
        ...
dispatch(CloudCidrLookup, sys.argv, sys.stdin, sys.stdout, __name__)

 

 

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Refer to the field name by index rather than by name.

cloud = self.fieldnames[0]
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Refer to the field name by index rather than by name.

cloud = self.fieldnames[0]
---
If this reply helps you, Karma would be appreciated.
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 ...