Backport of https://github.com/elastic/elasticsearch/pull/38819. Original message: This PR removes usages of the `_type` field in `_search` requests issued from Monitoring code.
This commit is contained in:
parent
57f69082fd
commit
a9178b3239
|
@ -46,21 +46,10 @@
|
||||||
"cluster_uuid": "{{ctx.metadata.xpack.cluster_uuid}}"
|
"cluster_uuid": "{{ctx.metadata.xpack.cluster_uuid}}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bool": {
|
|
||||||
"should": [
|
|
||||||
{
|
|
||||||
"term": {
|
|
||||||
"_type": "cluster_state"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"term": {
|
"term": {
|
||||||
"type": "cluster_stats"
|
"type": "cluster_stats"
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"range": {
|
"range": {
|
||||||
|
|
|
@ -39,21 +39,10 @@
|
||||||
"_id": "{{ctx.metadata.xpack.cluster_uuid}}"
|
"_id": "{{ctx.metadata.xpack.cluster_uuid}}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bool": {
|
|
||||||
"should": [
|
|
||||||
{
|
|
||||||
"term": {
|
|
||||||
"_type": "cluster_stats"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"term": {
|
"term": {
|
||||||
"type": "cluster_stats"
|
"type": "cluster_stats"
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"range": {
|
"range": {
|
||||||
|
|
|
@ -43,14 +43,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bool": {
|
|
||||||
"should": [
|
|
||||||
{
|
|
||||||
"term": {
|
|
||||||
"_type": "kibana_stats"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"term": {
|
"term": {
|
||||||
"type": "kibana_stats"
|
"type": "kibana_stats"
|
||||||
|
@ -58,9 +50,6 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"aggs": {
|
"aggs": {
|
||||||
"group_by_kibana": {
|
"group_by_kibana": {
|
||||||
|
|
|
@ -43,14 +43,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"bool": {
|
|
||||||
"should": [
|
|
||||||
{
|
|
||||||
"term": {
|
|
||||||
"_type": "logstash_stats"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"term": {
|
"term": {
|
||||||
"type": "logstash_stats"
|
"type": "logstash_stats"
|
||||||
|
@ -58,9 +50,6 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"aggs": {
|
"aggs": {
|
||||||
"group_by_logstash": {
|
"group_by_logstash": {
|
||||||
|
|
Loading…
Reference in New Issue