in src/main/java/org/apache/rocketmq/exporter/model/metrics/producer/ProducerCountMetric.java [31:37]
public boolean equals(Object obj) {
if (!(obj instanceof ProducerCountMetric)) {
return false;
}
ProducerCountMetric other = (ProducerCountMetric) obj;
return other.group.equals(this.group) && other.clusterName.equals(this.clusterName) && other.brokerName.equals(this.brokerName);
}