public interface MemoryUsageStatus
MemoryUsage| Modifier and Type | Method and Description |
|---|---|
com.codahale.metrics.Gauge<Long> |
getCommittedMemoryInBytesGauge()
Retrieves the amount of memory in bytes that is committed (i.e., guaranteed) for the JVM to use.
|
com.codahale.metrics.Gauge<Long> |
getInitialSizeInBytesGauge()
Retrieves the amount of memory in bytes that the JVM initially requests from the operating system for memory
management.
|
com.codahale.metrics.Gauge<Long> |
getMaxAvailableMemoryInBytesGauge()
Retrieves the maximum amount of memory in bytes that can be used for memory management.
|
com.codahale.metrics.Gauge<Long> |
getUsedMemoryInBytesGauge()
Retrieves the amount of used memory in bytes.
|
com.codahale.metrics.Gauge<Double> |
getUsedMemoryPercentageGauge()
Retrieves the percentage of used memory.
|
com.codahale.metrics.Gauge<Long> getInitialSizeInBytesGauge()
MemoryUsage.getInit()com.codahale.metrics.Gauge<Long> getUsedMemoryInBytesGauge()
MemoryUsage.getUsed()com.codahale.metrics.Gauge<Long> getMaxAvailableMemoryInBytesGauge()
MemoryUsage.getMax()com.codahale.metrics.Gauge<Long> getCommittedMemoryInBytesGauge()
MemoryUsage.getCommitted()com.codahale.metrics.Gauge<Double> getUsedMemoryPercentageGauge()
Copyright © 2016–2017. All rights reserved.