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

com.agido.logback.elasticsearch.StructuredArgsElasticsearchAppender Maven / Gradle / Ivy

The newest version!
package com.agido.logback.elasticsearch;

import com.agido.logback.elasticsearch.config.Settings;

import java.io.IOException;

public class StructuredArgsElasticsearchAppender extends ElasticsearchAppender {

    public StructuredArgsElasticsearchAppender() {
    }

    public StructuredArgsElasticsearchAppender(Settings settings) {
        super(settings);
    }

    protected StructuredArgsElasticsearchPublisher buildElasticsearchPublisher() throws IOException {
        return new StructuredArgsElasticsearchPublisher(this.getContext(), this.errorReporter, this.settings,
                this.elasticsearchProperties, this.headers);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy