Skip to content

Commit

Permalink
Fixed metricpath
Browse files Browse the repository at this point in the history
  • Loading branch information
Balakrishna V committed Oct 15, 2014
1 parent b71467a commit ed5cbc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private String getMetricPath(String categoryName, String metricName) {
StringBuilder metricPath = new StringBuilder();
metricPath.append(Strings.isNullOrEmpty(server.getDisplayName()) ? "" : server.getDisplayName() + METRIC_SEPARATOR);
metricPath.append(Strings.isNullOrEmpty(categoryName) ? "" : categoryName + METRIC_SEPARATOR);
metricPath.append(Strings.isNullOrEmpty(metricName) ? "" : metricName + METRIC_SEPARATOR);
metricPath.append(metricName);
return metricPath.toString();
}

Expand Down

0 comments on commit ed5cbc5

Please sign in to comment.