-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: parser for azureeventhubs message without time field
- Loading branch information
1 parent
2750025
commit edd5fad
Showing
4 changed files
with
87 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...source/azure_event_hubs/internal/parser/testdata/message_without_time_and_time_stamp.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"records": [ | ||
{ | ||
"resourceId": "/RESOURCE_ID", | ||
"operationName": "ApplicationGatewayAccess", | ||
"category": "ApplicationGatewayAccessLog" | ||
} | ||
] | ||
} |
10 changes: 10 additions & 0 deletions
10
...ource/azure_event_hubs/internal/parser/testdata/message_without_time_with_time_stamp.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"records": [ | ||
{ | ||
"timeStamp": "2024-09-18T00:45:09+00:00", | ||
"resourceId": "/RESOURCE_ID", | ||
"operationName": "ApplicationGatewayAccess", | ||
"category": "ApplicationGatewayAccessLog" | ||
} | ||
] | ||
} |