[failed-test-reporter/es-config] add new sub-fields in mapping (#114200)

Co-authored-by: spalger <spalger@users.noreply.github.com>
This commit is contained in:
Spencer 2021-10-07 00:12:46 -05:00 committed by GitHub
parent 202980e887
commit b9f0965381
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,17 +78,32 @@ PUT _component_template/test-failures-mappings
"properties": {
"classname": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"fields": {
"text": {
"type": "text"
}
}
},
"failure": {
"type": "keyword",
"ignore_above": 256
"ignore_above": 256,
"fields": {
"text": {
"type": "text"
}
}
},
"likelyIrrelevant": {
"type": "boolean"
},
"name": {
"type": "keyword"
"type": "keyword",
"fields": {
"text": {
"type": "text"
}
}
},
"system-out": {
"type": "match_only_text"