Skip to content

Fix misspellings of TraceId #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ This library uses the [Google Cloud .NET](https://cloud.google.com/dotnet/docs)
| ServiceName | Name of the service added as metadata to log entries. Required for logged exceptions to be forwarded to StackDriver Error Reporting. |
| ServiceVersion | Version of the service added as metadata to log entries. Required for logged exceptions to be forwarded to StackDriver Error Reporting. |
| UseSourceContextAsLogName | The log name for a log entry will be set to the [SourceContext](https://github.com/serilog/serilog/wiki/Writing-Log-Events#source-contexts) property if available. Default is `true`. |
| UseLogCorrelation | Integrate logs with [Cloud Trace](https://cloud.google.com/trace) by setting `Trace`, `SpanId`, `TraceSampled` properties if available. Default is `true`. |
| UseLogCorrelation | Integrate logs with [Cloud Trace](https://cloud.google.com/trace) by setting `TraceId`, `SpanId`, `TraceSampled` properties if available. Default is `true`. |
| GoogleCredentialJson | JSON string to override [Application Default Credentials](https://cloud.google.com/docs/authentication/production#providing_credentials_to_your_application) (contents of your credential file). |

### Log Level Mapping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GoogleCloudLoggingSinkOptions
public bool UseSourceContextAsLogName { get; set; }

/// <summary>
/// Integrate logs with Cloud Trace by setting `Trace`, `SpanId`, `TraceSampled` properties on the LogEvent.
/// Integrate logs with Cloud Trace by setting `TraceId`, `SpanId`, `TraceSampled` properties on the LogEvent.
/// Enabled by default. Required for Google Cloud Trace Log Correlation.
/// See https://cloud.google.com/trace/docs/trace-log-integration
/// </summary>
Expand Down