Splunk Dev

Why are events sent directly to index over socket using python SDK not seen in event search?

shobhas
New Member

There is no error shown while sending data over socket using Python SDK. But the event is not available in search. Why?
import splunklib;
import config;
import splunklib.client as client
import socket

# Create a Service instance and log in
service = client.connect(
    host=config.splunkconfig.get("host"),
    port=config.splunkconfig.get("port"),
    username=config.splunkconfig.get("user"),
    password=config.splunkconfig.get("password"))

# Get the collection of indexes
indexes = service.indexes

# List the indexes and their event counts
for index in indexes:
    #count = index["totalEventCount"]
    print ((index.name))

# Retrieve the index for the data
myindex = service.indexes["main"]

# Open a socket
mysocket = myindex.attach(sourcetype="splunk_input_test")

# Send events to it
data=b'This is my splunk test event\r\n'
mysocket.sendall(data)
# Close the socket
mysocket.close()
Tags (1)
0 Karma

shobhas
New Member

also service.indexes is not listing all the indexes I have access to.

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 ...