
com.internetitem.logback.elasticsearch.config.ElasticsearchProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logback-elasticsearch-appender Show documentation
Show all versions of logback-elasticsearch-appender Show documentation
Send log events directly from Logback to Elasticsearch
The newest version!
package com.internetitem.logback.elasticsearch.config;
import java.util.ArrayList;
import java.util.List;
public class ElasticsearchProperties {
private List properties;
public ElasticsearchProperties() {
this.properties = new ArrayList();
}
public List getProperties() {
return properties;
}
public void addProperty(Property property) {
properties.add(property);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy