]> arthur.barton.de Git - netdata.git/commitdiff
fixes
authorCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Jun 2013 19:17:19 +0000 (22:17 +0300)
committerCosta Tsaousis <costa@tsaousis.gr>
Mon, 17 Jun 2013 19:17:19 +0000 (22:17 +0300)
README.md

index 5d8c3dfaf0689b32155f964d98a86ea8b9d70de4..4440fa540a4a21e685d0bda5913783ef414f7661 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,30 +6,33 @@ linux network traffic web monitoring
 
 # Installation
 
-1. download everything in a directory inside your web docs. You don't need apache. Any web server able to provide static files will do the job fine.
+### download everything in a directory inside your web docs.
+You don't need apache. Any web server able to provide static files will do the job fine.
 
-2. step into this directory and compile netdata
+### Compile netdata
+step into the directory you downloaded everything and compile netdata
 
 ```sh
 gcc -O3 -o netdata netdata.c
 ```
 
-3. run netdata and instruct it to create json files in this directory
+### run netdata
+Run netdata and instruct it to create json files in the current directory.
 
 ```sh
 ./netdata -d -l 60 -u 1 -o `pwd`
 ```
--d says to go daemon mode
--l 60 says to show 60 seconds of history
--u 1 says to create json files every second
--o sets the save path for the json files
+ - -d says to go daemon mode
+ - -l 60 says to show 60 seconds of history
+ - -u 1 says to create json files every second
+ - -o sets the save path for the json files
 
 You should now have one .json file per interface you have active, in the current directory.
 All these files are updated once per second.
 
-4. edit index.html and set the interfaces you would like to monitor on the web page.
+### edit index.html
+Set in index.html the interfaces you would like to monitor on the web page.
 
-5. hit index.html from a web browser, through your web server.
-
-6. Enjoy real time monitor web graphs for your interfaces.
+### hit index.html from a web browser
+Enjoy real time monitor web graphs for your interfaces.