-
Notifications
You must be signed in to change notification settings - Fork 131
Closed
Labels
Description
When reading configuration for sinks that include decimal-point numbers, the configuration reads the value as a string and then parses it using whatever number format the current culture supports.
Example of configuring Sentry as a sink, where SampleRate should be set to 10%::
{
"Name": "Sentry",
"Args": {
"Dsn": "https://<some value>.ingest.sentry.io/<some value>",
"MinimumEventLevel": "Warning",
"Environment": "Prod",
"Release": "<some value>",
"SampleRate": 0.1
}
}
The value is read / parsed as a string here:
argumentValue = new StringArgumentValue(argumentSection.Value);
While applying the configuration the rSampleRate value then depends on whether the current context supports point or comma as decimal point, giving either 0.1 (10%) or 1 (100%) as result.
The desired behavior would be for the number value to be parsed as a number and not a string, when the value is supplied as a number.
Package versions used:
- Serilog: 2.10.0
- Serilog.Settings.Configuration: 3.3.0
- Sentry.Serilog: 3.17.1