public class DiskSpaceHealthIndicator extends AbstractHealthIndicator
HealthIndicator
that checks available disk space and reports a status of
Status.DOWN
when it drops below a configurable threshold.Constructor and Description |
---|
DiskSpaceHealthIndicator(File path,
DataSize threshold)
Create a new
DiskSpaceHealthIndicator instance. |
DiskSpaceHealthIndicator(File path,
long threshold)
Deprecated.
since 2.1.0 in favor of
DiskSpaceHealthIndicator(File, DataSize) |
Modifier and Type | Method and Description |
---|---|
protected void |
doHealthCheck(Health.Builder builder)
Actual health check logic.
|
health
public DiskSpaceHealthIndicator(File path, DataSize threshold)
DiskSpaceHealthIndicator
instance.path
- the Path used to compute the available disk spacethreshold
- the minimum disk space that should be available@Deprecated public DiskSpaceHealthIndicator(File path, long threshold)
DiskSpaceHealthIndicator(File, DataSize)
DiskSpaceHealthIndicator
instance.path
- the Path used to compute the available disk spacethreshold
- the minimum disk space that should be available (in bytes)protected void doHealthCheck(Health.Builder builder) throws Exception
AbstractHealthIndicator
doHealthCheck
in class AbstractHealthIndicator
builder
- the Health.Builder
to report health status and detailsException
- any Exception
that should create a Status.DOWN
system status.Copyright © 2018 Pivotal Software, Inc.. All rights reserved.