Class ClusterStats

java.lang.Object
org.graylog2.system.stats.ClusterStats

public abstract class ClusterStats extends Object
  • Constructor Details

    • ClusterStats

      public ClusterStats()
  • Method Details

    • elasticsearchStats

      public abstract ElasticsearchStats elasticsearchStats()
    • mongoStats

      public abstract MongoStats mongoStats()
    • streamCount

      public abstract long streamCount()
    • streamRuleCount

      public abstract long streamRuleCount()
    • streamRuleCountByStream

      public abstract Map<String,Long> streamRuleCountByStream()
    • userCount

      public abstract long userCount()
    • outputCount

      public abstract long outputCount()
    • outputCountByType

      public abstract Map<String,Long> outputCountByType()
    • dashboardCount

      public abstract long dashboardCount()
    • inputCount

      public abstract long inputCount()
    • globalInputCount

      public abstract long globalInputCount()
    • inputCountByType

      public abstract Map<String,Long> inputCountByType()
    • extractorCount

      public abstract long extractorCount()
    • extractorCountByType

      public abstract Map<Extractor.Type,Long> extractorCountByType()
    • create

      public static ClusterStats create(ElasticsearchStats elasticsearchStats, MongoStats mongoStats, long streamCount, long streamRuleCount, Map<String,Long> streamRuleCountByStream, long userCount, long outputCount, Map<String,Long> outputCountByType, long dashboardCount, long inputCount, long globalInputCount, Map<String,Long> inputCountByType, long extractorCount, Map<Extractor.Type,Long> extractorCountByType)