Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
RrdTool e valori errati...
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) Forum di discussione italiano
View previous topic :: View next topic  
Author Message
hellraiser
Guru
Guru


Joined: 14 Jun 2003
Posts: 431
Location: Pescara [Italy]

PostPosted: Thu Feb 02, 2006 2:50 am    Post subject: RrdTool e valori errati... Reply with quote

Salve...

ho un problema nei valori riportati nei grapici prodotti da rrdtool...

Praticamente i valori della scheda di rete non sono reali, per esempio vengono riportati valori intorno ai 200 kb/s quando di solito su quell interfaccia passano 3/4 MB/s di roba..che non viene quindi riportata opportunamente. Naturalmente i valori vengono presti tramite snmpwalk..

Mentre per le altre cose monitorate(spazio disco, utilizzo cpu) i valori sono esatti...

ora vi incollo i file di configurazione...

Con questo creo il database per l interfaccia eth0

Code:

/usr/bin/rrdtool create /home/www/localhost/graphic/logs/localhost_stats/eth0.r$
    --step 300 \
    DS:in:COUNTER:600:0:1250000 \
    DS:out:COUNTER:600:0:1250000 \
    RRA:AVERAGE:0.5:1:800 \
    RRA:AVERAGE:0.5:6:800 \
    RRA:AVERAGE:0.5:24:800 \
    RRA:AVERAGE:0.5:288:800 \
    RRA:MAX:0.5:1:800 \
    RRA:MAX:0.5:6:800 \
    RRA:MAX:0.5:24:800 \
    RRA:MAX:0.5:288:800


Con questo aggiorno il database...

Code:

#!/bin/bash

# snmpget will get all the values
# awk recipe will concatenate them together with : as separator
output=`snmpget -v 2c -c public localhost ifInOctets.2 ifOutOctets.2|awk '
        {out=out c $4; c=":"}
        END {print out}
        '`
/usr/bin/rrdtool update \
    /home/www/localhost/graphic/logs/localhost_stats/eth0.rrd \
    --template \
    in:out \
    N:$output



Con questo creo i grafici...

Code:


Directory[eth0]: localhost_stats
Graph[eth0]:
    --rigid
    --base=1000
    --alt-autoscale-max
    -v "Bytes Per Second"
    DEF:a=eth0.rrd:in:AVERAGE
    DEF:b=eth0.rrd:out:AVERAGE
    CDEF:cdefe=b,-1,*
    AREA:a#eacc00:Inbound
    GPRINT:a:LAST:" Cur\:%8.2lf %s"
    GPRINT:a:AVERAGE:"Ave\:%8.2lf %s"
    GPRINT:a:MAX:"Max\:%8.2lf %s\n"
    LINE1:a#000001:
    AREA:cdefe#da4725:Outbound
    GPRINT:b:LAST:"Cur\:%8.2lf %s"
    GPRINT:b:AVERAGE:"Ave\:%8.2lf %s"
    GPRINT:b:MAX:"Max\:%8.2lf %s"
    LINE1:cdefe#000001:
    HRULE:0#000000


Cosa potrebbe essere???

Se servono piu info..ditemelo che posto il resto...

ah, lo script in alto, aggiorna ogni 5 minuti....il database...e i grafici vengono generati su richiesta, cioe quando viene visualizzata la pagina cgi....
_________________
Io non sono nessuno...ma nessuno è come me!

"Open Source is a good idea..."
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Forum italiano (Italian) Forum di discussione italiano All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum