John

Results 15 issues of John

This is the only sample code (that I can see) showing how to set up and use metrics: ``` // add a new counter family to the registry (families combine...

I'm using `GECKOPRICE` and I have set a cell to let me trigger an update on-change. However, I notice that sometimes cells update value even when I don't modify this...

My server is returning the following as shown in PostMan: ![image](https://github.com/microsoft/cpprestsdk/assets/1654627/7c2f5214-4825-46fd-8ced-efca9982340b) ``` { "status": "FEL: Det valda objektet för händelsen" } ``` In C++ VS2019, reading as a `wstring` is...

Looking at the example for label use (https://github.com/prometheus-net/prometheus-net#labels) and the definition of [MetricConfiguration](https://github.com/prometheus-net/prometheus-net/blob/d90ebf3b356ed04ad8755d70a88979c7b98a1c3f/Prometheus/MetricConfiguration.cs) there seems no obvious way to pre-define the label values as I would the label/metric names. Is...

In much the same way you can pass (bind?) parameters to `Returns`: ``` mock.Setup(x => x.GetIdsAsync(It.IsAny())) .ReturnsAsync((int n) => new List(n)); ``` It would be great if you could do...

enhancement