in src/main/java/org/apache/rocketmq/exporter/model/metrics/ConsumerMetric.java [65:73]
public boolean equals(Object obj) {
if (!(obj instanceof ConsumerMetric)) {
return false;
}
ConsumerMetric other = (ConsumerMetric) obj;
return other.clusterName.equals(clusterName) && other.brokerName.equals(brokerName)
&& other.topicName.equals(topicName) && other.consumerGroupName.equals(consumerGroupName);
}