in shenyu-plugin/shenyu-plugin-logging/shenyu-plugin-logging-elasticsearch/src/main/java/org/apache/shenyu/plugin/logging/elasticsearch/config/ElasticSearchLogCollectConfig.java [195:216]
public boolean equals(final Object o) {
if (this == o) {
return Boolean.TRUE;
}
if (Objects.isNull(o) || getClass() != o.getClass()) {
return Boolean.FALSE;
}
ElasticSearchLogConfig that = (ElasticSearchLogConfig) o;
return Objects.equals(getHost(), that.getHost())
&& Objects.equals(getCompressAlg(), that.getCompressAlg())
&& Objects.equals(getPort(), that.getPort())
&& Objects.equals(getSampleRate(), that.getSampleRate())
&& Objects.equals(getBufferQueueSize(), that.getBufferQueueSize())
&& Objects.equals(getMaxRequestBody(), that.getMaxRequestBody())
&& Objects.equals(getMaxResponseBody(), that.getMaxResponseBody())
&& Objects.equals(getIndexName(), that.getIndexName())
&& Objects.equals(getUsername(), that.getUsername())
&& Objects.equals(getPassword(), that.getPassword())
&& Objects.equals(getAuthCache(), that.getAuthCache());
}