Skip to content
This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Hosting logging needs to use structured logging instead of format strings #597

Closed
Eilon opened this issue Feb 1, 2016 · 9 comments
Closed
Assignees
Milestone

Comments

@Eilon
Copy link
Member

Eilon commented Feb 1, 2016

E.g. here:

_cachedToString = $"Request finished in {_elapsed.TotalMilliseconds}ms {_httpContext.Response.StatusCode} {_httpContext.Response.ContentType}";

It's using a formatted string, which means that structured logging doesn't get to see what's in there. It also means that the formatting is being done in the current locale of the thread, which is unlikely to achieve the desired effect.

The logging calls need to instead use structured logging.

@Tratcher
Copy link
Member

Tratcher commented Feb 1, 2016

The structured part is here:

public KeyValuePair<string, object> this[int index]
{
get
{
switch (index)
{
case 0:
return new KeyValuePair<string, object>("ElapsedMilliseconds", _elapsed.TotalMilliseconds);
case 1:
return new KeyValuePair<string, object>("StatusCode", _httpContext.Response.StatusCode);
case 2:
return new KeyValuePair<string, object>("ContentType", _httpContext.Response.ContentType);
default:
throw new IndexOutOfRangeException(nameof(index));
}
}
}

ToString is just the fallback.

@Eilon
Copy link
Member Author

Eilon commented Feb 1, 2016

Hmm according to the linked bug aspnet/Mvc#3986 the data is formatted via the ToString in the log entry - that still looks wrong. Good to know that the structured data is available, though.

@Tratcher
Copy link
Member

Tratcher commented Feb 1, 2016

Some of the loggers don't consume the structured data, they just call ToString. @BrennanConroy?

@BrennanConroy
Copy link
Member

Its up to the logger to decide if it wants to use structured data and currently none of our loggers use structured logging anymore.

@Eilon
Copy link
Member Author

Eilon commented Feb 1, 2016

Perhaps not, but the formatting to a string needs to be done with InvariantCulture in anything that we ship. Is that in Logging maybe?

@Tratcher
Copy link
Member

Tratcher commented Feb 1, 2016

The formatting is happening inline in ToString.

@Eilon
Copy link
Member Author

Eilon commented Feb 1, 2016

Ah then I think that should change, no? Just need to pass in the right culture (InvariantCulture).

@Tratcher
Copy link
Member

Tratcher commented Feb 1, 2016

Well, it means you can't use the $"{myVar}" syntax anymore.

@Eilon
Copy link
Member Author

Eilon commented Feb 1, 2016

Hardly the end of the world 😄

@muratg muratg added this to the 1.0.0-rc2 milestone Feb 2, 2016
@muratg muratg assigned muratg and kichalla and unassigned muratg Feb 2, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants