This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from xnaveira/osdisk
Added grain for osdisk stats
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env python | ||
import os | ||
|
||
def get_osdisk_stats(): | ||
''' | ||
Calculates and returns the disk used, available and total capacity | ||
in gigabytes. Calculations code from: | ||
http://www.stealthcopter.com/blog/2009/09/python-diskspace/ | ||
''' | ||
grains = {} | ||
grains['osdisk'] = {} | ||
disk = os.statvfs("/") | ||
|
||
capacity = disk.f_bsize * disk.f_blocks | ||
available = disk.f_bsize * disk.f_bavail | ||
used = disk.f_bsize * (disk.f_blocks - disk.f_bavail) | ||
|
||
# print information in bytes | ||
#print used, available, capacity | ||
# print information in Kilobytes | ||
#print used/1024, available/1024, capacity/1024 | ||
# print information in Megabytes | ||
#print used/1.048576e6, available/1.048576e6, capacity/1.048576e6 | ||
# print information in Gigabytes | ||
#print used/1.073741824e9, available/1.073741824e9, capacity/1.073741824e9 | ||
|
||
grains['osdisk']['used'] = int(round(used/1.073741824e9)) | ||
grains['osdisk']['available'] = int(round(available/1.073741824e9)) | ||
grains['osdisk']['capacity'] = int(round(capacity/1.073741824e9)) | ||
|
||
return grains |