JSON log per line
See original GitHub issueIs there support for JSON logs where every line is a seperate JSON?
{msg: "log"}
{msg: "log2"}
{msg: "log3"}
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
JSON Lines
JSON Lines is a convenient format for storing structured data that may be processed one record at a time. It works well with...
Read more >JSONL: Definition, JSON Lines Format, Use Cases, and More
JSON Lines is a fantastic format for log files and a flexible way to transfer messages across cooperating processes, according to the website ......
Read more >JSON Logs | Best Practices, benefits, and examples
JSON logs are log messages that are formatted as JSON objects, with each log message represented as a separate object. This allows log...
Read more >JSON versus JSON Lines
In some cases, you might need to extract logs as JSON Lines, where each line is a JSON object. In other cases, you...
Read more >Format for writing a JSON log file?
You're not going to write a single JSON object per FILE, you're going to write a JSON object per LINE. Each line can...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
sorry for the late response. Not sure if this still relevant but in the latest version the new json parser allows to parse but single json or json per file and you can map fields to the Analogy fields:
It may not work since Serilog needs specific key words But I can extend the NLog to read the json. or better yet, I can update the Generic Json Parser to handle this job: https://github.com/Analogy-LogViewer/Analogy.LogViewer.JsonParser
I’ll check during the weekend and update you 😃