Crates.io | cw_parser |
lib.rs | cw_parser |
version | 0.1.3 |
source | src |
created_at | 2021-11-01 17:28:31.997715 |
updated_at | 2021-11-02 13:43:57.688936 |
description | Parse cloudwatch logs in json format into something more useful |
homepage | |
repository | https://github.com/klaatu01/cw_parser |
max_upload_size | |
id | 475353 |
size | 16,225 |
Cloudwatch logs will be formatted differently depending on what runtime you are using. This library should make things abit easier.
Node:
2020-11-18T23:52:30.128Z 6e48723a-1596-4313-a9af-e4da9214d637 INFO {"data": "Hello World"}
Python:
[INFO] 2020-11-18T23:52:30.128Z 6e48723a-1596-4313-a9af-e4da9214d637 {"data": "Hello World"}
Dotnet/Provided Runtimes just logs the raw message from the runtime:
{"data": "Hello World"}