Code Monkey home page Code Monkey logo

Comments (4)

jupp0r avatar jupp0r commented on August 28, 2024 1

There is still a bug open, because bucket boundaries specified through the histogram builder are not used - #46 . A working example can be found at https://github.com/jupp0r/prometheus-cpp/blob/master/tests/family_test.cc#L66

This should work and I'll add it as a test case:

Registry registry{};
auto& histogram_family =
    BuildHistogram().Name("hist").Help("Test Histogram").Register(registry);
auto& histogram = histogram_family.Add({{"name", "test_histogram_1"}},
                                       Histogram::BucketBoundaries{0, 1, 2});
histogram.Observe(1.1);
auto collected = registry.Collect();

from prometheus-cpp.

jupp0r avatar jupp0r commented on August 28, 2024

Hi, do the unit tests at https://github.com/jupp0r/prometheus-cpp/blob/master/tests/histogram_test.cc help answer your question? In general, you use Observe() to count an observation. When a prometheus server is scraping your service, Collect() is called on the histogram to create a snapshot of the values it has counted so far. You usually do not have to call Collect() yourself.

from prometheus-cpp.

baiwfg2 avatar baiwfg2 commented on August 28, 2024

I checked the unit test. It seems that it doesn't use the Build* method to create a metric family and call Add() to add a metric the same way as you did in README.md. So may I do like this ?

	auto& hist_cmd_cost_family = BuildHistogram()
			.Name("cerberus_cmd_cost")
			.Help("command cost")
			.Buckets({0,20,30,50}) //is this BucketBoundaries ?
			.Register(*registry);
		auto& hist_cmd_cost = hist_cmd_cost_family.Add({{"cmd_cost","value"}});
		hist_cmd_cost.Observe(proxy->last_cmd_elapse().count());
		hist_cmd_cost.Collect();//just like you said, this is optional

from prometheus-cpp.

baiwfg2 avatar baiwfg2 commented on August 28, 2024

Thanks. I'll try that.

from prometheus-cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.