com.nitorcreations.willow.metrics.PhysicalMemoryMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-servers Show documentation
Show all versions of willow-servers Show documentation
Willow operational servlets and servers
The newest version!
package com.nitorcreations.willow.metrics;
import javax.inject.Named;
@Named("/mem")
public class PhysicalMemoryMetric extends SimpleMetric {
@Override
public String getType() {
return "mem";
}
@Override
public String[] requiresFields() {
return new String[] { "usedPercent" };
}
@Override
protected Double fillMissingValue() {
return 0D;
}
}