Skip to content

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mrproliu committed Jan 8, 2025
1 parent abb7d5a commit 2ce522d
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.apache.skywalking.oap.server.core.analysis.metrics.annotation.MetricsFunction;
import org.apache.skywalking.oap.server.core.storage.annotation.BanyanDB;
import org.apache.skywalking.oap.server.core.storage.annotation.Column;
import org.apache.skywalking.oap.server.core.storage.annotation.ElasticSearch;

import java.util.Objects;
import java.util.Set;
Expand All @@ -42,19 +41,16 @@ public abstract class LabelAvgMetrics extends Metrics implements LabeledValueHol
@Getter
@Setter
@Column(name = SUMMATION, storageOnly = true)
@ElasticSearch.Column(legacyName = "summation")
@BanyanDB.MeasureField
protected DataTable summation;
@Getter
@Setter
@Column(name = COUNT, storageOnly = true)
@ElasticSearch.Column(legacyName = "count")
@BanyanDB.MeasureField
protected DataTable count;
@Getter
@Setter
@Column(name = VALUE, dataType = Column.ValueDataType.LABELED_VALUE, storageOnly = true)
@ElasticSearch.Column(legacyName = "value")
@BanyanDB.MeasureField
private DataTable value;

Expand Down

0 comments on commit 2ce522d

Please sign in to comment.