Skip to content

Commit

Permalink
Fix AvgHistogramPercentileFunction legacy name. (#12039)
Browse files Browse the repository at this point in the history
  • Loading branch information
wankai123 authored Mar 19, 2024
1 parent f483632 commit b6d8d3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
* Add Golang as a supported language for Kafka.
* Support displaying the port services listen to from OAP and UI during server start.
* Refactor data-generator to support generating metrics.
* Fix `AvgHistogramPercentileFunction` legacy name.

#### UI

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public abstract class AvgHistogramPercentileFunction extends Meter implements Ac
@Getter
@Setter
@Column(name = VALUE, dataType = Column.ValueDataType.LABELED_VALUE, storageOnly = true)
@ElasticSearch.Column(legacyName = "name")
@ElasticSearch.Column(legacyName = "value")
@BanyanDB.MeasureField
private DataTable percentileValues = new DataTable(10);
@Getter
Expand Down

0 comments on commit b6d8d3a

Please sign in to comment.