in src/main/java/com/aliyun/openservices/log/common/AlertConfiguration.java [315:328]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
AlertConfiguration that = (AlertConfiguration) o;
if (sendRecoveryMessage != that.sendRecoveryMessage) return false;
if (condition != null ? !condition.equals(that.condition) : that.condition != null) return false;
if (queryList != null ? !queryList.equals(that.queryList) : that.queryList != null) return false;
if (muteUntil != null ? !muteUntil.equals(that.muteUntil) : that.muteUntil != null) return false;
if (notifyThreshold != null ? !notifyThreshold.equals(that.notifyThreshold) : that.notifyThreshold != null)
return false;
return throttling != null ? throttling.equals(that.throttling) : that.throttling == null;
}