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!

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