Getting Data In

Why am I unable to post logs using Java SDK?

srinitest123
Engager

I have attached below my code snippet. I am using a free developer access machine. https://prd-p-lgqtg5v8fkdb.cloud.splunk.com

I am unable to login using my credentials.

public class Splunk {
    public static void main(String args[]) throws IOException {
        HttpService.setSslSecurityProtocol(SSLSecurityProtocol.TLSv1_2);

        Map<String, Object> connectionArgs = new HashMap<String, Object>();
        connectionArgs.put("host", "input-prd-p-lgqtg5v8fkdb.cloud.splunk.com");
        connectionArgs.put("username", "test123");
        connectionArgs.put("password", "test123");
        connectionArgs.put("port", 8089);
        connectionArgs.put("scheme", "https");

        Service splunkService = Service.connect(connectionArgs); 
    }
}

Tried using a lot of ways. The curl works fine.

0 Karma

aaraneta_splunk
Splunk Employee
Splunk Employee

Hi @srinitest123 - I saw that you up voted msivill's answer. If it helped answer your question, please don't forget to resolve this post by clicking "Accept" below the answer. Thanks!

0 Karma

msivill_splunk
Splunk Employee
Splunk Employee

I've successfully used the HTTP event collector ( http://dev.splunk.com/view/event-collector/SP-CAAAE6M ) mechanism to send data to the cloud. It works using a token rather than username/password (also different port). As the HTTP event collector (HEC) is based on REST you can create a java client (with your preferred HTTP java library) that passes data to Splunk Cloud.

Example curl -

curl -X POST -d @**FILENAME** -H "Content-Type: application/json" -k https://input-**SERVER**.cloud.splunk.com:8088/services/collector/event -H "Authorization: Splunk **HEC_TOKEN**"
Get Updates on the Splunk Community!

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

🔐 Trust at Every Hop: How mTLS in Splunk Enterprise 10.0 Makes Security Simpler

From Idea to Implementation: Why Splunk Built mTLS into Splunk Enterprise 10.0  mTLS wasn’t just a checkbox ...