All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nitorcreations.willow.metrics.RequestCountMetric Maven / Gradle / Ivy

The newest version!
package com.nitorcreations.willow.metrics;

import java.util.List;

import javax.inject.Named;

import com.nitorcreations.willow.messages.metrics.MetricConfig;

@Named("/requests")
public class RequestCountMetric extends SimpleMetric {
  @Override
  public String getType() {
    return "access";
  }

  @Override
  public String[] requiresFields() {
    return new String[] { "duration" };
  }

  @Override
  protected Integer estimateValue(List preceeding, long stepTime, long stepLen, MetricConfig conf) {
    return preceeding.size();
  }

  @Override
  protected Integer fillMissingValue() {
    return 0;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy