Created
September 13, 2020 13:49
-
-
Save wowo/64c459e9fc9f60a7008fc64c53ccc0fb to your computer and use it in GitHub Desktop.
schemas
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
{ | |
"time": "2020-09-13 15:45:00", | |
"level": "info", | |
"channel": "main", | |
"message": "Some log entry has been produced" | |
} |
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
{ | |
"name": "LogEntry", | |
"type": "record", | |
"namespace": "pl.sznapka", | |
"fields": [ | |
{ | |
"name": "time", | |
"type": "string" | |
}, | |
{ | |
"name": "level", | |
"type": "string" | |
}, | |
{ | |
"name": "channel", | |
"type": "string" | |
}, | |
{ | |
"name": "message", | |
"type": "string" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment