Merge pull request #6556 from danieljn/develop

added status.diskusage to status.status_all
This commit is contained in:
Joseph Hall 2013-08-07 14:32:14 -07:00
commit 7bab83ddd8

View File

@ -119,9 +119,9 @@ def uptime():
def loadavg():
'''
Return the load averages for this minion
CLI Example::
salt '*' status.loadavg
'''
load_avg = os.getloadavg()
@ -445,6 +445,7 @@ def all_status():
return {'cpuinfo': cpuinfo(),
'cpustats': cpustats(),
'diskstats': diskstats(),
'diskusage': diskusage(),
'loadavg': loadavg(),
'meminfo': meminfo(),
'netdev': netdev(),