pieter-venter

Results 5 comments of pieter-venter

Reviving and old case here - but just want to add that with the advent of "async everything" this has become a very real issue. Sometimes the call stacks are...

You can alias a namespace like so, at the top of your file: ```C# using AppMetrics = App.Metrics; ``` Then in your code ```C# var metrics = new AppMetrics.MetricsBuilder().Build(); ```...

I tried a few things but could not find an elegant solution :( I have to concur that ultimately the `App.Metrics` namespace does not follow [best practice](https://docs.microsoft.com/en-us/dotnet/standard/design-guidelines/names-of-namespaces). `App` is simply...

Most likely the reason is because of `config.json`. People sometimes have this file in the current directory (that is not used for TileServerGL config) and that causes the problem.

Here's my understanding: CPU stacks is basically a sample every 1 millisecond. Let's say your method is MyMethod(). When we observe it, we allocate 1ms to that method (as an...