Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
d63ae90
feature: ipv4 and ipv6 subnet aggregator
salvatore-campagna Dec 29, 2021
bfd6875
feature: new version without ranges
salvatore-campagna Dec 29, 2021
77373e9
fix: reuse method to extract the netmask from the prefix length
salvatore-campagna Jan 11, 2022
f0e4b8a
docs: add some javadoc
salvatore-campagna Jan 11, 2022
d344f25
fix: code format violations
salvatore-campagna Jan 11, 2022
3506bba
fix: check number of buckets to collect
salvatore-campagna Jan 11, 2022
3832cb5
fix: extract ther ipv6 address value
salvatore-campagna Jan 11, 2022
228c264
fix: add ip_prefix to the unsupported transform aggregations
salvatore-campagna Jan 11, 2022
48c9d03
test: include tests with incorrect is_ipv6 value
salvatore-campagna Jan 12, 2022
a2f0498
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 13, 2022
b3403e9
fix: incorrect netmask
salvatore-campagna Jan 13, 2022
58297d5
fix: move IpPrefix aggregator to prefix package
salvatore-campagna Jan 13, 2022
563d337
fix: code format violations
salvatore-campagna Jan 13, 2022
c269c66
docs: include documentation for the ip prefix aggregation
salvatore-campagna Jan 13, 2022
90b5e95
docs: fix sentence using the actual aggregation name
salvatore-campagna Jan 13, 2022
3c68ec2
docs: reduce the number of documents used in the example
salvatore-campagna Jan 13, 2022
2ca2cb2
test: add integration tests for mixed IPv4/IPv6 field
salvatore-campagna Jan 14, 2022
4a1a9ce
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 14, 2022
318a139
docs: improve the documentation
salvatore-campagna Jan 14, 2022
1aa223f
fix: use 1 as the min_doc_count minimum and default value
salvatore-campagna Jan 14, 2022
986f0d8
docs: include the field type
salvatore-campagna Jan 14, 2022
322e42f
docs: rephrase netmask description
salvatore-campagna Jan 14, 2022
ea66f68
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 14, 2022
f70f3d8
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 17, 2022
6359121
docs: reference documentation improvements
salvatore-campagna Jan 17, 2022
7859b89
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 17, 2022
917389f
fix: use prefix_length instead of prefix_len
salvatore-campagna Jan 20, 2022
9d5956d
fix: improve exception error messages
salvatore-campagna Jan 20, 2022
cdfed61
fix: add some notes clarifying netmask setting
salvatore-campagna Jan 20, 2022
785eb6f
fix: use ValueSourceConfig instead of ValueSource and DocValueFormat
salvatore-campagna Jan 20, 2022
54547e4
fix: remove check of bucket limit
salvatore-campagna Jan 20, 2022
130cb9f
fix: use a NonCollectingAggregator when unmapped
salvatore-campagna Jan 20, 2022
ccab368
fix: improve performance of critical path removing Arrays.copyOfRange
salvatore-campagna Jan 20, 2022
df8ff71
fix: avoid re-allocation of BytesRef variables
salvatore-campagna Jan 20, 2022
6602d96
fix: code format violations
salvatore-campagna Jan 20, 2022
3e1d03e
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 20, 2022
3a967cd
fix: error message for invalid prefix_length
salvatore-campagna Jan 20, 2022
83f12c4
fix: use the parent testCase method
salvatore-campagna Jan 20, 2022
3645a72
fix: code format violations
salvatore-campagna Jan 20, 2022
c4d20e6
fix: use the correct prefix length range depending on the isIpv6 rand…
salvatore-campagna Jan 20, 2022
da3eb73
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 24, 2022
658a844
fix: re-use the subnet buffer instead of re-allocating byte arrays
salvatore-campagna Jan 26, 2022
e4517a2
Update docs/changelog/82410.yaml
salvatore-campagna Jan 26, 2022
6f446c2
Merge branch 'master' into feature/ip-subnet-agg
elasticmachine Jan 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/82410.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 82410
summary: Add an aggregator for IPv4 and IPv6 subnets
area: Aggregations
type: enhancement
issues: []
2 changes: 2 additions & 0 deletions docs/reference/aggregations/bucket.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ include::bucket/global-aggregation.asciidoc[]

include::bucket/histogram-aggregation.asciidoc[]

include::bucket/ipprefix-aggregation.asciidoc[]

include::bucket/iprange-aggregation.asciidoc[]

include::bucket/missing-aggregation.asciidoc[]
Expand Down
Loading