Class DropwizardCounter

java.lang.Object
io.micrometer.core.instrument.AbstractMeter
io.micrometer.core.instrument.dropwizard.DropwizardCounter
All Implemented Interfaces:
Counter, Meter

public class DropwizardCounter
extends AbstractMeter
implements Counter
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.micrometer.core.instrument.Counter

    Counter.Builder

    Nested classes/interfaces inherited from interface io.micrometer.core.instrument.Meter

    Meter.Builder, Meter.Id, Meter.Type
  • Method Summary

    Modifier and Type Method Description
    double count()  
    boolean equals​(java.lang.Object o)  
    int hashCode()  
    void increment​(double amount)
    Update the counter by amount.

    Methods inherited from class io.micrometer.core.instrument.AbstractMeter

    getId

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface io.micrometer.core.instrument.Counter

    increment, measure

    Methods inherited from interface io.micrometer.core.instrument.Meter

    close, getId, match, use
  • Method Details

    • increment

      public void increment​(double amount)
      Description copied from interface: Counter
      Update the counter by amount.
      Specified by:
      increment in interface Counter
      Parameters:
      amount - Amount to add to the counter.
    • count

      public double count()
      Specified by:
      count in interface Counter
      Returns:
      The cumulative count since this counter was created.
    • equals

      public boolean equals​(java.lang.Object o)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object