1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-25 10:28:36 +00:00

Uses GAUGE instead of DERIVE - fix'es bad plot.

This commit is contained in:
Thomas R. N. Jansson 2010-07-29 13:55:24 +02:00 committed by Steve Schnepp
parent 5a489679c7
commit 567d6d9e69

View file

@ -49,7 +49,6 @@ if len(sys.argv) == 2 and sys.argv[1] == "config":
print 'graph_info This graph shows traffic for the '+ifacename+' network interface.'
print 'recv.label recv'
print 'recv.type DERIVE'
print 'recv.graph no'
print 'recv.cdef recv,8,*'
print 'recv.max 2000000000'
@ -57,7 +56,6 @@ if len(sys.argv) == 2 and sys.argv[1] == "config":
print 'send.info Bits sent/received by the '+ifacename+' interface.'
print 'send.label bps'
print 'send.type DERIVE'
print 'send.negative recv'
print 'send.cdef send,8,*'
print 'send.max 2000000000'