Commit 57a15452 authored by Phillip Webb's avatar Phillip Webb

Drop min/max DataSourcePool metrics

parent a98c7613
...@@ -78,8 +78,6 @@ public class DataSourcePublicMetrics implements PublicMetrics { ...@@ -78,8 +78,6 @@ public class DataSourcePublicMetrics implements PublicMetrics {
String prefix = entry.getKey(); String prefix = entry.getKey();
prefix = (prefix.endsWith(".") ? prefix : prefix + "."); prefix = (prefix.endsWith(".") ? prefix : prefix + ".");
DataSourcePoolMetadata metadata = entry.getValue(); DataSourcePoolMetadata metadata = entry.getValue();
addMetric(metrics, prefix + "max", metadata.getMax());
addMetric(metrics, prefix + "min", metadata.getMin());
addMetric(metrics, prefix + "active", metadata.getActive()); addMetric(metrics, prefix + "active", metadata.getActive());
addMetric(metrics, prefix + "usage", metadata.getUsage()); addMetric(metrics, prefix + "usage", metadata.getUsage());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment