Skip to content

Commit

Permalink
[#10776] Adding property to fieldClusterList in the metric properties…
Browse files Browse the repository at this point in the history
… API
  • Loading branch information
minwoo-jung committed Oct 7, 2024
1 parent 7ec7777 commit b848e25
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ public FieldCluster(String fieldName, String unit) {
this.tagGroupList = new ArrayList<>();
}

public String getUnit() {
return unit;
}

public String getFieldName() {
return fieldName;
}

public void addTagGroup(String tagGroup) {
tagGroupList.add(tagGroup);
}
Expand Down

0 comments on commit b848e25

Please sign in to comment.