SumoLogic / sumologic-java-http-core

Core Java components for sending data to Sumo Logic HTTP sources
Apache License 2.0
2 stars 4 forks source link

Build Status codecov.io

sumologic-java-http-core

Core Java components for sending data to Sumo Logic HTTP sources. Used by Log4j, Log4j2, and Logback appenders to send logs to Sumo Logic.

Installation

The library can be added to your project using Maven Central by adding the following dependency to a POM file:

<dependency>
    <groupId>com.sumologic.plugins.http</groupId>
    <artifactId>sumologic-http-core</artifactId>
    <version>2.1</version>
</dependency>

Usage

The Sumo Logic Java HTTP Core library provides reusable components for sending logs to a Sumo Logic HTTP Source.

The three main components are:

To use the library, you'll probably want to create a SumoBufferFlusher which asynchronously invokes sending via a SumoHttpSender based on data placed concurrently in a queue. For an example, see SumoHttpSenderTest.

Parameters

Parameter Required? Default Value Description
url Yes HTTP collection endpoint URL
sourceName No "Http Input" Source name to appear when searching on Sumo Logic by _sourceName
sourceHost No Client IP Address Source host to appear when searching on Sumo Logic by _sourceHost
sourceCategory No "Http Input" Source category to appear when searching on Sumo Logic by _sourceCategory
proxyHost No Proxy host IP address
proxyPort No Proxy host port number
proxyAuth No For basic authentication proxy, set to "basic". For NTLM authentication proxy, set to "ntlm". For no authentication proxy, do not specify.
proxyUser No Proxy host username for basic and NTLM authentication. For no authentication proxy, do not specify.
proxyPassword No Proxy host password for basic and NTLM authentication. For no authentication proxy, do not specify.
proxyDomain No Proxy host domain name for NTLM authentication only
retryIntervalMs No 10000 Retry interval (in ms) if a request fails
maxNumberOfRetries No -1 Maximum number of retries before a message is dropped. Negative values represent no limit on retries.
connectionTimeoutMs No 1000 Timeout (in ms) for connection
socketTimeoutMs No 60000 Timeout (in ms) for a socket
messagesPerRequest No 100 Number of messages needed to be in the queue before flushing
maxFlushIntervalMs No 10000 Maximum interval (in ms) between flushes
flushingAccuracyMs No 250 How often (in ms) that the flushing thread checks the message queue
maxQueueSizeBytes No 1000000 Maximum capacity (in bytes) of the message queue
flushAllBeforeStopping No false Flush all messages before stopping regardless of flushingAccuracyMs
retryableHttpCodeRegex No ^5.* Regular expression specifying which HTTP error code(s) should be retried during sending. By default, all 5xx error codes will be retried.
fields No Fields as custom metadata, need to be in a comma separated list of key-value pairs.

TLS 1.2 Requirement

Sumo Logic only accepts connections from clients using TLS version 1.2 or greater. To utilize the content of this repo, ensure that it's running in an execution environment that is configured to use TLS 1.2 or greater.

Development

To compile the plugin:

License

The Sumo Logic Java HTTP Core library is published under the Apache Software License, Version 2.0. Please visit http://www.apache.org/licenses/LICENSE-2.0.txt for details.