Annotation of embedaddon/ntp/scripts/monitoring/loopwatch.config.SAMPLE, revision 1.1

1.1     ! misho       1: # sample configuration and control file for ntploowatch
        !             2: #
        !             3: # delay:       sampling interval in seconds
        !             4: delay=60
        !             5: # samples:     use only last # samples
        !             6: samples=600
        !             7: # DO NOT USE srcprefix in shared config files
        !             8: # srcprefix:   name of file to read samples from
        !             9: #              current time suffix (month name) is appended
        !            10: #              defaults to "./var@$STATHOST/loopstats."
        !            11: #              The string "$STATHOST"is replaced by the name of the host
        !            12: #              being monitored
        !            13: #srcprefix=./var@$STATHOST/loopstats.
        !            14: #
        !            15: # showoffs:    yes/no control display of offset values
        !            16: showoffs=yes
        !            17: #
        !            18: # showfreq:    yes/no control display of frequency values
        !            19: showfreq=yes
        !            20: #
        !            21: # showcmpl:    yes/no control display of compliance values
        !            22: showcmpl=no
        !            23: #
        !            24: # showoreg:    yes/no control display of linear regression of offset values
        !            25: showoreg=no
        !            26: #
        !            27: # showfreg:    yes/no control display of linear regression of frequency values
        !            28: showfreg=no
        !            29: #
        !            30: # timebase:    dynamic/ISO_DATE_TIME point of zero for linear regression
        !            31: #              ISO_DATE_TIME:  yyyy-mm-dd_hh:mm:ss.ms
        !            32: #              values are interpreted using local time zone
        !            33: #              parts omitted from front default to current date/time
        !            34: #              parts omitted from end  default to lowest permitted values
        !            35: #              to get aa:bb being interpreted as minutes:seconds use aa:bb.0
        !            36: #              for dynamic '00:00:00.0 of current day' is used
        !            37: timebase=dynamic
        !            38: #
        !            39: # freqbase:    dynamic/<baseval> 
        !            40: #              if a number is given, subtract this from sampling values for display
        !            41: #              if dynamic is selected, freqbase is adjusted to fit into the range of
        !            42: #              offset values
        !            43: freqbase=dynamic
        !            44: #
        !            45: # cmplscale:   dynamic/<scaling>
        !            46: #              if a number is given, the sampling values are divided by this number
        !            47: #              if dynamic is selected, cmplscale is adjusted to fit into the range of
        !            48: #              offset values
        !            49: cmplscale=dynamic
        !            50: #
        !            51: # DumbScale:   0/1
        !            52: #              0 enables dynamic adjust of value ranges for freqbase and cmplscale
        !            53: #                timescale is labeled with human readable times
        !            54: #              1 only uses explicit scaling for numbers
        !            55: #                timescale is labeled with hours relative to timebase
        !            56: DumbScale=0
        !            57: #
        !            58: # StartTime:   none/ISO_DATE_TIME
        !            59: #              ignore any samples before the specified date
        !            60: StartTime=none
        !            61: #
        !            62: # EndTime:     none/ISO_DATE_TIME
        !            63: #              ignore any samples after the specified date
        !            64: #
        !            65: #              if both StartTime and EndTime are specified
        !            66: #              the value specified for samples is ignored
        !            67: EndTime=none
        !            68: #
        !            69: # MaxOffs:     none/<number>
        !            70: #              limit display (y-axis) to values not larger than <number>
        !            71: MaxOffset=none
        !            72: #
        !            73: # MinOffs:     none/<number>
        !            74: #              limit display (y-axis) to values not smaller than <number>
        !            75: MinOffset=none
        !            76: 
        !            77: #
        !            78: # verbose:     <number>
        !            79: #              specify level for debugging 
        !            80: #              default is 0 for printing and 1 for monitoring
        !            81: #              level 1 will just print a timestamp for any display update
        !            82: #              (this is every delay seconds)
        !            83: verbose=1
        !            84: #
        !            85: # deltaT:      <seconds>
        !            86: #              mark `holes' in the sample data grater than <seconds>
        !            87: #              by a break in the plot
        !            88: #              default: 512 seconds
        !            89: deltaT=512

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>