I need to find a way to display logs tagged as TelemetryLogs in a grouped view so that I can easily monitor the flow of network calls.
The specific requirement is to have Network Calls displayed in a table format with key-name, key-type, and log-object columns.
One suggestion we provided was to log to the console with a prefix and allow filtering using a filter expression. For example:
console.log(``Telemetry %s %s %o``, "name", "type", { someobject: 'someval' })
However, they want the groups to be displayed as subgroups under specific categories in Chrome (see image below). This is because they are planning to introduce more similar groups and don't want to manage multiple filter expressions.
Realizing that StackOverflow might have the answers, I sought advice on whether this type of grouping is possible and what other grouped display options could help achieve a similar goal.
It's worth mentioning that during pair-programming sessions, sometimes a business analyst sits alongside us. They believe having a consolidated view of telemetry data during development would enable them to catch early issues...