Hi I have created an app using the Add-on builder, by: collectionName = "myKVStore"
service = connect(scheme=scheme, host=splunkd_host, port=splunkd_port, token=helper.session_key, owner="nob...
See more...
Hi I have created an app using the Add-on builder, by: collectionName = "myKVStore"
service = connect(scheme=scheme, host=splunkd_host, port=splunkd_port, token=helper.session_key, owner="nobody")
if not collectionName in service.kvstore:
service.kvstore.create(collectionName) I would like to see the data in my kvstore, IN Splunk, i have tried to query the api with no luck, also tried to define it transforms.conf: [myKVstore]
external_type = kvstore
case_sensitive_match = false
collection = myKVstore
fields_list = _key, .... If i then query it by: |inputlookup ... i get "collection does not exist" But it works fine within my code Ideas?