-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added etl log table, implemented matching parser to url path.
- Loading branch information
1 parent
78109f6
commit 35100fb
Showing
7 changed files
with
244 additions
and
132 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[ | ||
{ | ||
"name": "request_id", | ||
"type": "STRING", | ||
"mode": "REQUIRED", | ||
"description": "Unique UUID for the row" | ||
}, | ||
{ | ||
"name": "timestamp", | ||
"type": "TIMESTAMP", | ||
"mode": "REQUIRED", | ||
"description": "Timestamp of processing the row" | ||
}, | ||
{ | ||
"name": "status", | ||
"type": "STRING", | ||
"mode": "REQUIRED", | ||
"description": "Status of the processing FAILED/SUCCESS" | ||
}, | ||
{ | ||
"name": "details", | ||
"type": "JSON", | ||
"mode": "REQUIRED", | ||
"description": "Output the processing" | ||
} | ||
] |
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
Binary file not shown.
Oops, something went wrong.