X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=doc%2Frrd-howto.txt;h=007005b035c2fc42ef6f146291bcc1e7ec8be4a9;hb=d2348d98b49475c0868d43bf79639a5980d75c84;hp=b8c3cc809ff31e6a0f17dc1874ffa742e64cc72d;hpb=226344134ee28d50d5e29d19f5b7ffe4b4df40fd;p=vlc diff --git a/doc/rrd-howto.txt b/doc/rrd-howto.txt index b8c3cc809f..007005b035 100644 --- a/doc/rrd-howto.txt +++ b/doc/rrd-howto.txt @@ -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