Getting Data In

Data indexed via REST API then forwarded on to another Indexer

Damien_Dallimor
Ultra Champion

If data is being indexed via the Rest API "services/receivers/simple" endpoint vs an entry in inputs.conf , can I still then use outputs.conf to forward the data onto another Indexer ?

Tags (2)
1 Solution

Damien_Dallimor
Ultra Champion

The answer is , yes you can 🙂

Just pumped some test data in using the new Java SDK, and outputs.conf routed the event into my Indexer cluster.

Service service = new Service("myhost", 8089);
service.login("admin", "notmyrealpass");       
RequestMessage request = new RequestMessage();
request.setContent("testing java sdk");
ResponseMessage response = service.send("receivers/simple?index=testing&source=sdk&sourcetype=sdk_testing", request);
System.out.println(response.getStatus() == 200?"Success":"Failure");

View solution in original post

Damien_Dallimor
Ultra Champion

The answer is , yes you can 🙂

Just pumped some test data in using the new Java SDK, and outputs.conf routed the event into my Indexer cluster.

Service service = new Service("myhost", 8089);
service.login("admin", "notmyrealpass");       
RequestMessage request = new RequestMessage();
request.setContent("testing java sdk");
ResponseMessage response = service.send("receivers/simple?index=testing&source=sdk&sourcetype=sdk_testing", request);
System.out.println(response.getStatus() == 200?"Success":"Failure");

dmr195
Communicator

It's great to know this is possible, but please could you clarify what you put in outputs.conf. Did you have to rely on the defaultGroup setting in the [tcpout] stanza, or do you know a way to have data added using the REST API forwarded using a specific target group other than the default one in outputs.conf?

0 Karma
Get Updates on the Splunk Community!

Security Professional: Sharpen Your Defenses with These .conf25 Sessions

Sooooooooooo, guess what. .conf25 is almost here, and if you're on the Security Learning Path, this is your ...

First Steps with Splunk SOAR

Our first step was to gather a list of the playbooks we wanted and to sort them by priority.  Once this list ...

How To Build a Self-Service Observability Practice with Splunk Observability Cloud

If you’ve read our previous post on self-service observability, you already know what it is and why it ...