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

org.graylog2.system.stats.elasticsearch.AutoValue_IndicesStats Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.system.stats.elasticsearch;

import com.fasterxml.jackson.annotation.JsonIgnore;

final class AutoValue_IndicesStats extends $AutoValue_IndicesStats {
  AutoValue_IndicesStats(int indexCount, long storeSize, long fieldDataSize, long idCacheSize) {
    super(indexCount, storeSize, fieldDataSize, idCacheSize);
  }

  @JsonIgnore
  public final int getIndexCount() {
    return indexCount();
  }

  @JsonIgnore
  public final long getStoreSize() {
    return storeSize();
  }

  @JsonIgnore
  public final long getFieldDataSize() {
    return fieldDataSize();
  }

  @JsonIgnore
  public final long getIdCacheSize() {
    return idCacheSize();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy