update README

This commit is contained in:
Patrick Stadler 2015-03-12 21:17:44 +01:00
parent 88318c64c4
commit e34af80c11
2 changed files with 3 additions and 5 deletions

View File

@ -1,12 +1,10 @@
## TODO
- README
- option parsing
- improve CLI interface
- allow multiple reporters
- better docs, including reporters (--docs)
- config file support
- config file auto-generation
- load custom metrics
- async metrics
- extended metric labels?
- load custom/contrib metrics and reporters
- same metric multiple times (e.g. disk_usage for multiple devices)

View File

@ -106,7 +106,7 @@ main_terminate () {
fi
# delete temporary directory
if [ ! -z $TEMP_DIR ] && [ -d $TEMP_DIR ]; then
if [ -d $TEMP_DIR ]; then
rmdir $TEMP_DIR
fi
}