Skip navigation links
com.mendix.metrics

Interface Metrics

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      Counters counters()
      Counters count occurrences of an event.
      Gauges gauges()
      Gauges are arbitrary, persistent values.
      Sets sets()
      Sets report the number of unique elements that are received in a flush period.
      Timers timers()
      Timers measure the amount of time an action took to complete, in milliseconds.
    • Method Detail

      • counters

        Counters counters()
        Counters count occurrences of an event.
        Returns:
        an object that contains different methods for setting counter values.
      • timers

        Timers timers()
        Timers measure the amount of time an action took to complete, in milliseconds.
        Returns:
        an object that contains different methods for setting timer values.
      • gauges

        Gauges gauges()
        Gauges are arbitrary, persistent values.
        Returns:
        an object that contains different methods for setting gauge values.
      • sets

        Sets sets()
        Sets report the number of unique elements that are received in a flush period. A flush period is the amount of time that is configured between sending metrics from the StatsD backend to the persistence component.
        Returns:
        an object that contains different methods for setting set values.