-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugin for monitoring directory size
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
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
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,26 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
import os | ||
import subprocess | ||
import plugins | ||
import json | ||
|
||
class Plugin(plugins.BasePlugin): | ||
__name__ = 'dirsize' | ||
|
||
def run(self, config): | ||
''' | ||
Monitor total directory sizes, specify the directories you want to monitor in /etc/nixstats.ini | ||
''' | ||
|
||
data = {} | ||
my_dirs = config.get('dirsize', 'dirs').split(',') | ||
|
||
for dir in my_dirs: | ||
data[dir] = {'bytes': os.popen('du -c {} | grep total'.format(dir)).read().replace('total', '').rstrip()} | ||
|
||
return data | ||
|
||
|
||
if __name__ == '__main__': | ||
Plugin().execute() |