Skip to content

Commit

Permalink
tests/system: add user_agent.device.type
Browse files Browse the repository at this point in the history
elastic/elasticsearch#69322
added support for extracting device types to the
user_agent ingest processors. Update approvals to
match.
  • Loading branch information
axw committed Mar 31, 2021
1 parent d548dff commit c56fad6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion docs/data/elasticsearch/generated/errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@
},
"user_agent": {
"device": {
"name": "Other"
"name": "Other",
"type": "Other"
},
"name": "Other",
"original": "Mozilla Chrome Edge"
Expand Down
5 changes: 3 additions & 2 deletions docs/data/elasticsearch/generated/transactions.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,10 +497,11 @@
},
"user_agent": {
"device": {
"name": "Other"
"name": "Other",
"type": "Other"
},
"name": "Other",
"original": "Mozilla Chrome Edge"
}
}
]
]
3 changes: 2 additions & 1 deletion tests/system/error.approved.json
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@
},
"user_agent": {
"device": {
"name": "Other"
"name": "Other",
"type": "Other"
},
"name": "Other",
"original": "Mozilla Chrome Edge"
Expand Down
5 changes: 3 additions & 2 deletions tests/system/transaction.approved.json
Original file line number Diff line number Diff line change
Expand Up @@ -497,10 +497,11 @@
},
"user_agent": {
"device": {
"name": "Other"
"name": "Other",
"type": "Other"
},
"name": "Other",
"original": "Mozilla Chrome Edge"
}
}
]
]

0 comments on commit c56fad6

Please sign in to comment.