Skip to content

Commit

Permalink
Minor improvement on the self-diagnostics doc (open-telemetry#4475)
Browse files Browse the repository at this point in the history
  • Loading branch information
reyang authored May 10, 2023
1 parent fea6793 commit ce71d13
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/OpenTelemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ the following content:
```json
{
"LogDirectory": ".",
"FileSize": 1024,
"LogLevel": "Error"
"FileSize": 32768,
"LogLevel": "Warning"
}
```

Expand All @@ -135,10 +135,10 @@ You can also find the exact directory by calling these methods from your code.
can be an absolute path or a relative path to the current directory.

2. `FileSize` is a positive integer, which specifies the log file size in
[KiB](https://en.wikipedia.org/wiki/Kibibyte). This value must be between 1 MiB
and 128 MiB (inclusive), or it will be rounded to the closest upper or lower
limit. The log file will never exceed this configured size, and will be
overwritten in a circular way.
[KiB](https://en.wikipedia.org/wiki/Kibibyte). This value must be within
range `[1024, 131072]` (1 MiB \<= size \<= 128 MiB), or it will be rounded to
the closest upper or lower limit. The log file will never exceed this
configured size, and will be overwritten in a circular way.

3. `LogLevel` is the lowest level of the events to be captured. It has to be one
of the
Expand Down

0 comments on commit ce71d13

Please sign in to comment.