ip_range type not fully supported #23822
Labels
bug
Fixes for quality problems that affect the customer experience
enhancement
New value added to drive a business result
Team:Visualizations
Visualization editors, elastic-charts and infrastructure
Kibana version: 6.3.0
Elasticsearch version: 6.3.0
Server OS version: Ubuntu 16.04
Browser version: Chrome 69
Browser OS version: Windows 10
Original install method (e.g. download page, yum, from source, etc.): download page
Description of the problem including expected versus actual behavior: When defining an Elastic template with a field of type ip_range, it is expected that Kibana:
Instead of that the field doesn't appear to be recognized (it is shown with a question mark in Discover and as unknown in Index Patterns) but it is possible to search inside the IP range in Discover. Furthermore, it is not possible to:
Steps to reproduce:
{
"order": 1,
"version": 1,
"index_patterns": ["test-foo"],
"settings": {
"index": {
"refresh_interval": "30s",
"analysis": {
"analyzer": {
"url_analyzer": {
"type": "pattern",
"pattern": "\W|",
"lowercase": true
}
}
},
"number_of_shards": "3",
"number_of_replicas": "1"
}
},
"mappings": {
"_doc": {
"properties": {
"net_range": {
"type": "ip_range"
}
}
}
}
}
{
"net_range" : "192.168.0.0/12"
}
The text was updated successfully, but these errors were encountered: