in service/src/main/java/org/apache/griffin/core/metric/model/MetricValue.java [87:95]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
MetricValue that = (MetricValue) o;
return Objects.equals(name, that.name) &&
Objects.equals(tmst, that.tmst) &&
Objects.equals(metadata, that.metadata) &&
Objects.equals(value, that.value);
}