Skip to content

Commit

Permalink
fix SkyApm.Transport.Grpc.LogReporter : Report log fail (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
witskeeper authored Apr 17, 2024
1 parent e7633b0 commit fda9b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SkyApm.Transport.Grpc/V8/LogReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public async Task ReportAsync(IReadOnlyCollection<LogRequest> logRequests,
Timestamp = logRequest.Date,
Service = _instrumentConfig.ServiceName,
ServiceInstance = _instrumentConfig.ServiceInstanceName,
Endpoint = logRequest.Endpoint,
Endpoint = logRequest.Endpoint ?? string.Empty,
Body = new LogDataBody()
{
Type = "text",
Expand Down

0 comments on commit fda9b9a

Please sign in to comment.