Peter Bons

Results 16 comments of Peter Bons

Can't we use [EventCounters](https://dev.to/expecho/reporting-metrics-using-net-core-eventsource-and-eventcounter-23dn)? They are in the .Net Core Framework

> I did simulation with connection lost , when client reconnect it's ok, but client receive twice same events and then disconnect / reconnect , one more. This could happen...

So you modified my example to include persistance, is there a fork I can take a look at?

@abbasc52 As a complete beginner I have trouble using and understanding this. I am creating a demo application using code to setup the rules. Couple of things I cannot find...

May I suggest removing the build cmd files and update the contributing guide, or is there still any use for them? I've tried them as well but to no avail...

> Hi @Expecho, most of the cmd files had been orphaned from older build systems. We went through several changes to our build infra and had not kept all these...

@lmolkova , @TimothyMothra I just noticed that inside a .Net Core 3.1 based Azure Function this is already happening. Given the code below a custom property is added to the...

> @Expecho Did you use `Activity.Current.AddTag("aTag", "aValue");` as a way to add custom properties to an auto-collected telemetry in codeless attach? (There might be support for this coming in a...

> Since you are using SDK, the following can also work. > > ``` > var telemetry = httpContext?.Features.Get(); > if (telemetry != null) > { > telemetry.Properties.Add("key", "value"); >...

@SeanFeldman are you sure it does not work? Because I confirmed this to be working some time ago, see https://github.com/Ibis-Software/AppInsightsDemo/blob/master/src/FunctionApp/HttpTriggered.cs