All Downloads are FREE. Search and download functionalities are using the official Maven repository.

biz.paluch.logging.gelf.intern.GelfREDISSender Maven / Gradle / Ivy

There is a newer version: 1.15.1
Show newest version
package biz.paluch.logging.gelf.intern;

import java.net.URI;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;


import redis.clients.jedis.Jedis;

/**
 * (c) https://github.com/strima/logstash-gelf.git
 */
public class GelfREDISSender implements GelfSender {
    private boolean shutdown = false;
    private URI redisUri;
    private Jedis jedis;
    private ErrorReporter errorReporter;

    public GelfREDISSender(String redisConnStr, ErrorReporter errorReporter) throws IOException {
        this.redisUri = URI.create(redisConnStr);
        this.jedis = new Jedis(redisUri);
        this.errorReporter = errorReporter;
    }

    public boolean sendMessage(GelfMessage message) {
        if (shutdown || !message.isValid()) {
            return false;
        }

        try {
            // reconnect if necessary
            if (jedis == null) {
                jedis = new Jedis(redisUri);
            }

            jedis.lpush(redisUri.getFragment(),message.toJson(""));

            return true;
        } catch (Exception e) {
            errorReporter.reportError(e.getMessage(), new IOException("Cannot send REDIS data via URI " + redisUri.toString() , e));
            // if an error occours, signal failure
            if (jedis != null) {
                jedis.close();
            }
            jedis = null;
            return false;
        }
    }

    public void close() {
        shutdown = true;
        try {
            if (jedis != null) {
                jedis.close();
            }
        } catch (Exception e) {
            errorReporter.reportError(e.getMessage(), new IOException("Cannot close REDIS connection " , e));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy