spectator-reg-atlas/src/main/java/com/netflix/spectator/atlas/AtlasCounterBatchUpdater.java [51:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void add(double amount) {
    if (Double.isFinite(amount) && amount > 0.0) {
      sum += amount;
      ++count;
      if (count >= batchSize) {
        flush();
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spectator-api/src/main/java/com/netflix/spectator/api/CounterBatchUpdater.java [34:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void add(double amount) {
    if (Double.isFinite(amount) && amount > 0.0) {
      sum += amount;
      ++count;
      if (count >= batchSize) {
        flush();
      }
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



