Fix `AvgHistogramPercentileFunction` legacy name. (#12039)

This commit is contained in:
Wan Kai 2024-03-19 09:42:14 +08:00 committed by GitHub
parent f4836327a6
commit b6d8d3a174
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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