Class: Arelastic::Builders::Aggregations

Inherits:
Object
  • Object
show all
Defined in:
lib/arelastic/builders/aggregations.rb

Constant Summary collapse

MACROS_TO_ARELASTIC =
{
  cardinality:   Arelastic::Aggregations::Cardinality,
  date_histogram: Arelastic::Aggregations::DateHistogram,
  filter:         Arelastic::Aggregations::Filter,
  filters:        Arelastic::Aggregations::Filters,
  histogram:      Arelastic::Aggregations::Histogram,
  missing:        Arelastic::Aggregations::Missing,
  nested:         Arelastic::Aggregations::Nested,
  range:          Arelastic::Aggregations::Range,
  reverse_nested: Arelastic::Aggregations::ReverseNested,
  sampler:        Arelastic::Aggregations::Sampler,
  terms:          Arelastic::Aggregations::Terms,
  value_count:    Arelastic::Aggregations::ValueCount
}