Splunk Dev

Accessing HEC with Java getting error Failed to connect to hecdevsplunk.company.com/11.54.0.234:8088

steveIMS
Engager

Using Java Class HttpEventCollectorLoggingHandler, with properties file, implementing the HttpEventCollectorErrorHandler.

The Reply; Error Code and Error text from HttpEventCollectorErrorHandler is:

Reply: Failed to connect to hecdevsplunk.company.com/11.54.0.234:8088
ErrorCode: -1
ErrorText: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 9 path $
Failed write of Log Event: Failed to connect to hecdevsplunk.company.com/11.54.0.234:8088
HttpEventCollectorErrorHandler

Any assistance would be appreciated, Thanks Steve.

Labels (1)
Tags (1)

struffieux
Engager

Hi,

I have the same error.:

om.splunk.logging.HttpEventCollectorErrorHandler$ServerErrorException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 7 path $

Something new about it?

0 Karma

struffieux
Engager

It seems in case of error by send event that HttpEventCollectorSender will instantiate a ServerErrorException:

 HttpEventCollectorErrorHandler.error(events, new ServerErrorException(ex.getMessage()));

And ServerErrorException try to parse the message as JSON (!):

        public ServerErrorException(String serverReply) {
            this.reply = serverReply;

            try {
                JsonObject json = JsonParser.parseString(serverReply).getAsJsonObject();
                this.errorCode = json.get("code").getAsLong();
                this.errorText = json.get("text").getAsString();
            } catch (Exception var3) {
                this.errorText = var3.getMessage();
            }

        }

So this error is not the original error.

0 Karma
Get Updates on the Splunk Community!

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

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...