Skip to content
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

Log dropped telemetry item count on shutdown #2331

Merged
merged 17 commits into from
Sep 21, 2021
Merged
Prev Previous commit
Next Next commit
remove extra parameter
  • Loading branch information
mic-max committed Sep 21, 2021
commit 972b1ca7867c35549b38bec619bf377ed238e030
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public void MissingPermissionsToReadEnvironmentVariable(string exception)
}

[Event(31, Message = "'{0}' exporting to '{1}' dropped '0' items.", Level = EventLevel.Informational)]
public void NoDroppedExportProcessorItems(string exportProcessorName, string itemName, string exporterName)
public void NoDroppedExportProcessorItems(string exportProcessorName, string exporterName)
{
this.WriteEvent(31, exportProcessorName, exporterName);
}
Expand Down