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 ## TODO
- README - README
- option parsing - improve CLI interface
- allow multiple reporters - allow multiple reporters
- better docs, including reporters (--docs) - better docs, including reporters (--docs)
- config file support - config file support
- config file auto-generation - config file auto-generation
- load custom metrics - load custom/contrib metrics and reporters
- async metrics
- extended metric labels?
- same metric multiple times (e.g. disk_usage for multiple devices) - same metric multiple times (e.g. disk_usage for multiple devices)

View File

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