prometheus-cpp icon indicating copy to clipboard operation
prometheus-cpp copied to clipboard

Prometheus Client Library for Modern C++

Results 67 prometheus-cpp issues
Sort by recently updated
recently updated
newest added

hi, We are observing below core dump, Can you please let me know if this is a known issue? (gdb) bt #0 0x00007f1665707297 in local_Rb_tree_increment (__x=0x7f13bc1fbe50) at ../../../../../gcc-5.4.0/libstdc++-v3/src/c++98/tree.cc:71 #1 std::_Rb_tree_increment...

Modified the sample_server program to add 2M counters. During addition, the memory seems constant which is ok. During curl, there is some memory being allocated as Private and not getting...

@gjasny In a similar vain to https://github.com/jupp0r/prometheus-cpp/issues/380, are you expected to interact with vectors in a similar way? I can't get the output of Add to play nice with **any**...

Recently, I found myself wanting to use prometheus-cpp in push mode. As I already had VictoriaMetrics running, which exposes a Pushgateway-compatible API at `/api/v1/import/prometheus`, it seemed unnecessary to install an...

Hi there, thank you for this project! I've been checking out the milestones for Native Histograms on the main prometheus github project: https://github.com/prometheus/prometheus/milestone/10 Will this CPP library plan to add...

Observing a given value multiple times can be performed either by calling Observe multiple times or calling ObserveMultiple. The latter option is not very convenient because the caller has to...

I am working on integration of prometheus with our application. I need to collect the CPU, MEMORY and TCP requests. Not able to figure out how to get the METRIC...

Hi, I had a few questions revolving around value settings for quantiles and their corresponding errors. I noticed there are no errors or exceptions for setting `quantile1`, and similarly for...

I understand you are using "Civetweb" to create the HTTP server. Is the HTTP response chunked? Or is it sending the entire buffer in the response in one go? I'm...

It's not very clear to me the best practice for plumbing the metrics throughout my codebase? The example just uses a simple main function; however, my use case is much...