An application that monitors the availability of Kubernetes storage in end-to-end manner.
pie verifies that PVs are successfully provisioned on the specified nodes for the specified storage classes and that the PVs can be successfully accessed. It outputs the results as metrics.
Create values.yaml. At least the following setting is mandatory.
controller:
monitoringStorageClasses: [<storage_classes_to_be_monitored>]
Then you can install it using Helm.
helm repo add pie
helm install pie --values values.yaml
io_write_latency_seconds
IO latency of write.
TYPE: gauge
io_read_latency_seconds
IO latency of read.
TYPE: gauge
create_probe_fast_total
The number of attempts that take less time between the creation of the Pod object and the creation of the container than the threshold.
TYPE: counter
create_probe_slow_total
The number of attempts that take more time between the creation of the Pod object and the creation of the container than the threshold.
TYPE: counter
make test
make -C e2e create-cluster
make -C e2e test