Skip to content

Commit

Permalink
docker-collectd: report disk usage in percentages
Browse files Browse the repository at this point in the history
We're deploying this to machines with varying disk sizes, so tracking the
percentages makes it easier to set up alerts.
  • Loading branch information
sarahhodne committed Nov 13, 2014
1 parent b5c2749 commit 5787afa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worker_host/travis_worker_collectd/recipes/ec2-docker.rb
Expand Up @@ -11,11 +11,13 @@
collectd_plugin "df" do
options :mount_point => "/",
:report_reserved => false,
:report_inodes => false
:report_inodes => false,
:values_percentage => true
end

collectd_plugin "df" do
options :mount_point => "/mnt",
:report_reserved => false,
:report_inodes => false
:report_inodes => false,
:values_percentage => true
end

0 comments on commit 5787afa

Please sign in to comment.