![JAR search and dependency download from the Maven repository](/logo.png)
io.pythagoras.common.grayloglogger.config.GraylogProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-logger Show documentation
Show all versions of graylog-logger Show documentation
Pythagoras Common Libs - Graylog Logger
package io.pythagoras.common.grayloglogger.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("pythagoras.graylog-logger")
public class GraylogProperties {
private String host = "localhost";
private Integer port = 12201;
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public Integer getPort() {
return port;
}
public void setPort(Integer port) {
this.port = port;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy