Interface Counters


  • public interface Counters
    Counters count occurrences of an event.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void count​(java.lang.String bucket, double delta)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, double delta, double sampleRate)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, double delta, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, double delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, int delta)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, int delta, java.lang.Double sampleRate)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, int delta, java.lang.Double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, int delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, long delta)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, long delta, double sampleRate)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, long delta, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
      void count​(java.lang.String bucket, long delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Adjusts the specified counter by a given delta.
    • Method Detail

      • count

        void count​(java.lang.String bucket,
                   int delta)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
      • count

        void count​(java.lang.String bucket,
                   int delta,
                   java.lang.Double sampleRate)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
      • count

        void count​(java.lang.String bucket,
                   int delta,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        tags - map of tags to be added to the data
      • count

        void count​(java.lang.String bucket,
                   int delta,
                   java.lang.Double sampleRate,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
        tags - map of tags to be added to the data
      • count

        void count​(java.lang.String bucket,
                   long delta)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
      • count

        void count​(java.lang.String bucket,
                   long delta,
                   double sampleRate)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
      • count

        void count​(java.lang.String bucket,
                   long delta,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        tags - map of tags to be added to the data
      • count

        void count​(java.lang.String bucket,
                   long delta,
                   double sampleRate,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
        tags - map of tags to be added to the data
      • count

        void count​(java.lang.String bucket,
                   double delta)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
      • count

        void count​(java.lang.String bucket,
                   double delta,
                   double sampleRate)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
      • count

        void count​(java.lang.String bucket,
                   double delta,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        tags - map of tags to be added to the data
      • count

        void count​(java.lang.String bucket,
                   double delta,
                   double sampleRate,
                   java.util.Map<java.lang.String,​java.lang.String> tags)
        Adjusts the specified counter by a given delta.
        Parameters:
        bucket - name of the counter to adjust
        delta - amount to adjust the counter by
        sampleRate - percentage of count metric to be sent
        tags - map of tags to be added to the data