Interface Gauges


  • public interface Gauges
    Gauges are arbitrary, persistent values.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void recordDelta​(java.lang.String bucket, double delta)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, double delta, double sampleRate)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, double delta, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordDelta​(java.lang.String bucket, double delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordDelta​(java.lang.String bucket, int delta)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, int delta, double sampleRate)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, int delta, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordDelta​(java.lang.String bucket, int delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordDelta​(java.lang.String bucket, long delta)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, long delta, double sampleRate)
      Records a change in the value of the specified named gauge.
      void recordDelta​(java.lang.String bucket, long delta, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordDelta​(java.lang.String bucket, long delta, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records a change in the value of the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, double value)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, double value, double sampleRate)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, double value, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, double value, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, int value)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, int value, double sampleRate)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, int value, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, int value, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, long value)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, long value, double sampleRate)
      Records the latest fixed value for the specified named gauge.
      void recordValue​(java.lang.String bucket, long value, double sampleRate, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
      void recordValue​(java.lang.String bucket, long value, java.util.Map<java.lang.String,​java.lang.String> tags)
      Records the latest fixed value for the specified named gauge with tags.
    • Method Detail

      • recordValue

        void recordValue​(java.lang.String bucket,
                         int value)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
      • recordValue

        void recordValue​(java.lang.String bucket,
                         int value,
                         double sampleRate)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordValue

        void recordValue​(java.lang.String bucket,
                         int value,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        tags - map of tags to be added to the data
      • recordValue

        void recordValue​(java.lang.String bucket,
                         int value,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data
      • recordValue

        void recordValue​(java.lang.String bucket,
                         long value)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
      • recordValue

        void recordValue​(java.lang.String bucket,
                         long value,
                         double sampleRate)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordValue

        void recordValue​(java.lang.String bucket,
                         long value,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        tags - map of tags to be added to the data
      • recordValue

        void recordValue​(java.lang.String bucket,
                         long value,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data
      • recordValue

        void recordValue​(java.lang.String bucket,
                         double value)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
      • recordValue

        void recordValue​(java.lang.String bucket,
                         double value,
                         double sampleRate)
        Records the latest fixed value for the specified named gauge.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordValue

        void recordValue​(java.lang.String bucket,
                         double value,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        tags - map of tags to be added to the data
      • recordValue

        void recordValue​(java.lang.String bucket,
                         double value,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records the latest fixed value for the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        value - new reading of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         int delta)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         int delta,
                         double sampleRate)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         int delta,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         int delta,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         long delta)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         long delta,
                         double sampleRate)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         long delta,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         long delta,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         double delta)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         double delta,
                         double sampleRate)
        Records a change in the value of the specified named gauge.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         double delta,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        tags - map of tags to be added to the data
      • recordDelta

        void recordDelta​(java.lang.String bucket,
                         double delta,
                         double sampleRate,
                         java.util.Map<java.lang.String,​java.lang.String> tags)
        Records a change in the value of the specified named gauge with tags.
        Parameters:
        bucket - name of the gauge
        delta - change in the value of the gauge
        sampleRate - percentage of gauge metric to be sent
        tags - map of tags to be added to the data