Skip to content

Commit

Permalink
Include Metric id's when listing metric data by Resource.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Morgan committed Jul 21, 2009
1 parent f67fd3a commit e303ed7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/hyperic/hq/hqapi1/tools/MetricDataCommand.java
Expand Up @@ -138,7 +138,8 @@ private void list(String[] args) throws Exception {
} else {
value = "No data";
}
System.out.println(" " + d.getMetricName() + " = " + value);
System.out.println(" " + d.getMetricName() +
" (id=" + d.getMetricId() + ") = " + value);
}
}
}
Expand Down

0 comments on commit e303ed7

Please sign in to comment.