You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, if different log objects have fields with the same name but with different value type.
If we do:
logger.info({ test: 123 });
logger.info({ test: "string value" }); // this log message will not be added
Then the last log message will not be added to the elastic search because of the error: failed to parse field [test] of type [long] in document with id ... but pino-elasticsearch will not output any error or warning.
The text was updated successfully, but these errors were encountered:
For example, if different log objects have fields with the same name but with different value type.
If we do:
Then the last log message will not be added to the elastic search because of the error:
failed to parse field [test] of type [long] in document with id ...
butpino-elasticsearch
will not output any error or warning.The text was updated successfully, but these errors were encountered: