Class IndexRangeSummary

java.lang.Object
org.graylog2.rest.models.system.indexer.responses.IndexRangeSummary

public abstract class IndexRangeSummary extends Object
  • Constructor Details

    • IndexRangeSummary

      public IndexRangeSummary()
  • Method Details

    • indexName

      public abstract String indexName()
    • begin

      public abstract org.joda.time.DateTime begin()
    • end

      public abstract org.joda.time.DateTime end()
    • calculatedAt

      @Nullable public abstract org.joda.time.DateTime calculatedAt()
    • calculationTookMs

      public abstract int calculationTookMs()
    • create

      public static IndexRangeSummary create(String indexName, org.joda.time.DateTime begin, org.joda.time.DateTime end, @Nullable org.joda.time.DateTime calculatedAt, int calculationTookMs)