SigNoz is an open-source observability platform native to OpenTelemetry with logs, traces and metrics in a single application. An open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool
The problem is to have a better overview over JSON-based structured logs without always having to display the full JSON body.
Let's take an example JSON-based structured log like this one:
This one has a property RenderedMessage, which is the primary message that the user should see. One can display it at the front if one adds the column to the displayed columns like this:
While this does display the RenderedMessage, it also displays the full JSON body afterwards, which obviously gets very long and hard to read.
Describe the solution you'd like
Allow an option to just display the main property (e.g. RenderedMessage) column.
Is your feature request related to a problem?
The problem is to have a better overview over JSON-based structured logs without always having to display the full JSON body. Let's take an example JSON-based structured log like this one:
This one has a property
RenderedMessage
, which is the primary message that the user should see. One can display it at the front if one adds the column to the displayed columns like this:While this does display the
RenderedMessage
, it also displays the full JSON body afterwards, which obviously gets very long and hard to read.Describe the solution you'd like
Allow an option to just display the main property (e.g.
RenderedMessage
) column.Describe alternatives you've considered
n/a
Additional context
n/a