Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Add disk usage check for /var/lib/docker #69

Merged
merged 1 commit into from
Apr 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion distributive/distributive-docker/distributive-docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
"Name": "docker systemd service enabled",
"ID": "systemctlLoaded",
"Parameters": ["docker.service"]
}
},
{
"Name": "docker disk usage is below 90%",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this read "above"?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Depends on your perspective :) I can change it if you think that's more natural!

"ID": "diskUsage",
"Parameters": ["/var/lib/docker", "90%"]
}
]
}
2 changes: 1 addition & 1 deletion distributive/distributive-docker/spec.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

name: distributive-docker
version: 0.2.4
version: 0.2.5
iteration: 1
license: ASL 2.0
description: Distributive-docker is a configuration for distributed health checks.
Expand Down