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
Loki's documentation is poor in this regard, but it actually supports arrays nested in an object:
logger.info(["hello","world",2]);// omittedlogger.info({data: ["hello","world",2]});// shows up
If the purpose of convertArrays is only to allow for ingest, I think it should only convert in cases where it would otherwise be omitted, i.e. top-level conversion. Currently it converts array in all levels:
The text was updated successfully, but these errors were encountered:
Loki's documentation is poor in this regard, but it actually supports arrays nested in an object:
If the purpose of convertArrays is only to allow for ingest, I think it should only convert in cases where it would otherwise be omitted, i.e. top-level conversion. Currently it converts array in all levels:
The text was updated successfully, but these errors were encountered: