Changeset 970

Show
Ignore:
Timestamp:
10/30/05 18:48:45 (7 years ago)
Author:
ilmari
Message:

r940@vesla: ilmari | 2005-10-30 18:34:24 +0100
Fix generic/ntp_ to report seconds instead of milliseconds.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r969 r970  
    66  * Plugins: generic/loggrep now supports summing values from log lines. 
    77  * Plugins: SNMP plugins no longer report host_name when checking localhost. 
     8  * Plugins: Fix generic/ntp_ to report seconds instead of milliseconds. 
    89 
    910munin (1.3.2) 
  • trunk/node/node.d/ntp_.in

    r900 r970  
    6969                print "graph_title NTP statistics for peer $host\n"; 
    7070        } 
    71         print "graph_args --base 1000 --vertical-label msec --lower-limit 0\n"; 
     71        print "graph_args --base 1000 --vertical-label seconds --lower-limit 0\n"; 
    7272        print "delay.label Delay\n"; 
    7373        print "delay.draw LINE2\n"; 
     74        print "delay.cdef delay,1000,/\n"; 
    7475        print "offset.label Offset\n"; 
    7576        print "offset.draw LINE2\n"; 
     77        print "offset.cdef offset,1000,/\n"; 
    7678        print "jitter.label Jitter\n"; 
    7779        print "jitter.draw LINE2\n"; 
     80        print "jitter.cdef offset,1000,/\n"; 
    7881        exit 0; 
    7982}