Skip to content

Commit

Permalink
[ISSUE #7697] Fix can't open controller metricsExporter. (#7705)
Browse files Browse the repository at this point in the history
  • Loading branch information
baijun44 committed Dec 28, 2023
1 parent 2c5bc14 commit 9e4fd0e
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,14 @@ public void setMetricsExporterType(MetricsExporterType metricsExporterType) {
this.metricsExporterType = metricsExporterType;
}

public void setMetricsExporterType(int metricsExporterType) {
this.metricsExporterType = MetricsExporterType.valueOf(metricsExporterType);
}

public void setMetricsExporterType(String metricsExporterType) {
this.metricsExporterType = MetricsExporterType.valueOf(metricsExporterType);
}

public String getMetricsGrpcExporterTarget() {
return metricsGrpcExporterTarget;
}
Expand Down

0 comments on commit 9e4fd0e

Please sign in to comment.