Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active December 5, 2025 07:33
Show Gist options
  • Select an option

  • Save wullemsb/d4ee3b0a299762cec2a4f367a6723ad0 to your computer and use it in GitHub Desktop.

Select an option

Save wullemsb/d4ee3b0a299762cec2a4f367a6723ad0 to your computer and use it in GitHub Desktop.
// Before: EventSource
[EventSource(Name = "MyCompany.MyApp.Requests")]
public sealed class RequestEventSource : EventSource
{
// ...
}
// After: Meter
private static readonly Meter _meter = new (
"MyCompany.MyApp.Requests",
version: "1.0.0");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment