From bbb439da2e44e25aa19cc23a42f294d06e577fa9 Mon Sep 17 00:00:00 2001 From: Viktor Smagin Date: Wed, 8 Jul 2026 23:06:31 +0400 Subject: [PATCH] Fixed messages format --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c55d5ac..19350f5 100644 --- a/README.md +++ b/README.md @@ -257,17 +257,16 @@ if __name__ == "__main__": ## Message Format -Messages must conform to a specific JSON format: +Messages should conform to a specific JSON format: ```json { - "service": "service_name", - "environment": "production", - "exception": "ErrorType", - "message": "Error message text", - "type": "error", - "datetime": "2024-01-01T12:00:00" + "id":"019f42ff-de59-7a17-8189-a36b68191a71", + "source":"019f42ff-dff9-7b68-832f-a6323a078105", + "type":"user.message", + "message":"Hello my friend, i'm there" } + ``` See `examples/` directory for sample messages.