Skip to content

Commit

Permalink
[failed-test-reporter/es-config] add new sub-fields in mapping (#114200)
Browse files Browse the repository at this point in the history
Co-authored-by: spalger <spalger@users.noreply.github.com>
  • Loading branch information
Spencer and spalger authored Oct 7, 2021
1 parent 202980e commit b9f0965
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions packages/kbn-test/src/failed_tests_reporter/es_config
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit b9f0965

Please sign in to comment.