Gregor Jasny
Gregor Jasny
That one caught my eye: > CMake does not allow to insert source file to existing target once it has been defined. It does via [target_sources()](https://cmake.org/cmake/help/latest/command/target_sources.html) and maybe directly via...
Depends on #895
https://github.com/fermion-star/apple_sensors/ seems to work properly on M1 macs
I'm a little bit constrained on my spare time right now. Sorry for the delay. Right now timestamps are not supported in the API. The serializer is capable of writing...
Hello, I see some problems with this pull request: 1) Setting `last_update_ts_` is not synchronized between the updating thread and the collecting thread. A 32 bit system setting a 64...
Hi, what do you mean with "own memory pool"? Something like an STL allocator? Do you care only about the instrumented code? That one that increments the Counters, Gauges, and...
What's strange is that in stack frame 4 the this pointer is null. That means that `Familiy::_metrics` stored a null pointer. Normally that cannot happen. Did you disable Exceptions and...
Try to add a conflicting constant label when creating the family.
1. Set a breakpoint at the throw 2. Run the `prometheus_core_test` 3. Find the following: https://github.com/jupp0r/prometheus-cpp/blob/bac072291a029f09ce903b6757919f8111234b36/core/tests/family_test.cc#L32-L37
```c++ BuildCounter() .Name(...) .Help(...) .Labels({{"a", "A"}}) // here you set the constant labels in real-world use cases .Register(registry); ```