普通IP模式相对于range和date range,这个聚合就是能够表示IP的范围。
DSL命令:
{
"aggs":{
"ip_ranges":{
"ip_range":{
"field":"ip",
"ranges":[
{"to":"10.0.0.5"},
{"from":"10.0.0.5"}
]
}
}
}
}
返回结果:
{掩码模式
...
"aggregations":{
"ip_ranges":{
"buckets":[
{
"to":,
"to_as_string":"10.0.0.5",
"doc_count":
},{
"from":,
"from_as_string":"10.0.0.5",
"doc_count":
}
]
}
}
}
命令:
{
"aggs":{
"ip_ranges":{
"ip_range":{
"field":"ip",
"ranges":[
{"mask":"10.0.0.0/25"},
{"mask":"10.0.0.127/25"}
]
}
}
}
}
返回
{
"aggregations":{
"ip_ranges":{
"buckets":[
{
"key":"10.0.0.0/25",
"from":1.6777216E+8,
"from_as_string":"10.0.0.0",
"to":,
"to_as_string":"10.0.0.127",
"doc_count":
},{
"key":"10.0.0.127/25",
"from":1.6777216E+8,
"from_as_string":"10.0.0.0",
"to":,
"to_as_string":"10.0.0.127",
"doc_count":
}
]
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)