]> git.sesse.net Git - vlc/blobdiff - doc/rrd-howto.txt
Move last.fm password from PasswordShowOnEdit to Password.
[vlc] / doc / rrd-howto.txt
index b8c3cc809ff31e6a0f17dc1874ffa742e64cc72d..007005b035c2fc42ef6f146291bcc1e7ec8be4a9 100644 (file)
@@ -1,9 +1,11 @@
+# Create the exchange file
+touch rrd
 
-# First, create the RRD file
+# Create the RRD file
 rrdtool create vlc.rrd --step 1 "DS:in:GAUGE:10:0:30000" "DS:demux:GAUGE:10:0:30000" "DS:out:GAUGE:10:0:30000" "RRA:AVERAGE:0,5:1:86400"
 
 # Start "listening" the RRD file
-tail -f rrd |while read in;do;echo $in;rrdtool update vlc.rrd `echo $in`;done
+tail -f rrd |while read in;do echo $in;rrdtool update vlc.rrd `echo $in`;done
 
 # Start vlc
 vlc normal_vlc_stuff --extraintf logger --rrd-file rrd