Skip to content

Commit

Permalink
fix: data format
Browse files Browse the repository at this point in the history
  • Loading branch information
logeekal committed Nov 12, 2024
1 parent 9b1f3d9 commit b06148d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
'agent.name': ['java'],
'agent.name.text': ['java'],
'data_stream.type': ['logs'],
'host.name': 'some_host',
'host.name.keyword': 'some_host',
'host.name': ['some_host'],
'host.name.keyword': ['some_host'],
'log.level': ['debug'],
message: ['This is a debug log'],
'service.name': ['product'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
'agent.name': ['java'],
'agent.name.text': ['java'],
'data_stream.type': ['logs'],
'host.name': 'some_host',
'host.name.keyword': 'some_host',
'host.name': ['some_host'],
'host.name.keyword': ['some_host'],
'log.level': ['debug'],
message: ['This is a debug log'],
'service.name': ['product'],
Expand Down

0 comments on commit b06148d

Please sign in to comment.