Vadim Hatsura

Results 24 comments of Vadim Hatsura

It's nice hear. If you need some help I will be appreciated to help you with such stuff.

> This is nothing more than a conflict of subjective opinions. For example, I use Elapsed in my applications. After the change you proposed, should I suffer? I would say...

Sorry for intervention. I suggest to use multi targeting, when you target .netstandard1.6 and .netstandard2.0 at the same time. Why targeting only .netstandard1.6 isn't enough? The answer is simple, when...

In addition you can check all benefits from netstandard2.0 targeting in [dotnet standard repo](https://github.com/dotnet/standard/blob/master/docs/versions.md)

@mterwoord, as legitimate workaround for xUnit integration tests is using [`AssemblyFixture`](https://github.com/tomaszeman/Xunit.Extensions.Ordering#assemblyFixture). It doesn't affect you source code of host configuration. However, `AssemblyFixture` isn't suitable for all. In case of unit...

Hey, @ejsmith You're right, at the moment Elastic.Apm doesn't allow to pass a configuration object instead of `IConfiguration`. The reason for it is pretty simple, `Elastic.Apm` implements a concept of...

> I see a couple of issues with this. First of all, we are not very happy with that interface in its current form - it's getting very big and...

Agreed with `CurrentTransaction` but have concerns for `CurrentSpan`. As far as I know, it's better to start a new span on the current span if it's presented to save call...

I can confirm that it's true also for our applications in k8s. Resource usage by our pods: ![image](https://user-images.githubusercontent.com/10338692/82738612-87807800-9d41-11ea-91d5-9d33144dbf75.png) Pod definition: ```json { "kind": "Pod", "metadata": { "name": "##################-66d6b86979-8x5rj" }, "spec":...

Some time ago we had a similar issue with long running task. Our service has very simple self-written background job: ```csharp public void Start(CancellationToken token) { Task.Factory.StartNew( async () =>...