Azure / Azure/azure-functions-host

System logs: Move request details out of summary column

Open
#1,356 1 comment 0 reactions 1 assignee Claimed by @mathewc View on GitHub
area: engineering
Dominant language
C#
Stars
2k
Forks
482
Avg merge
2d 12h
Merged PRs (30d)
38

Description

The system logs have entries with a Summary value that looks like this:

```
Executed HTTP request: {
"requestId": "fa2a699d-cae9-4234-a456-3dc7f466f666",
"method": "GET",
"uri": "/api/HttpTriggerCSharp1",
"authorizationLevel": "Function"
}
```

It would be better if this was split across two columns e.g.

```
Summary Column
Executed HTTP request id "fa2a699d-cae9-4234-a456-3dc7f466f666"

Details Column
{
"requestId": "fa2a699d-cae9-4234-a456-3dc7f466f666",
"method": "GET",
"uri": "/api/HttpTriggerCSharp1",
"authorizationLevel": "Function"
}
```

This way you can do a parsejson(details) without having to do substring shenanigans

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.