Coder Social home page Coder Social logo

Comments (4)

jupp0r avatar jupp0r commented on June 15, 2024

Yes, you'll have to implement some glue logic. It'll basically work like the Exposer that prometheus-cpp comes with already and I'd encourage you to look at the code here: https://github.com/jupp0r/prometheus-cpp/tree/master/pull/src

The rough flow is as follows:

  1. Your existing http server gets a request on a metrics endpoint (url).
  2. You get a copy of the current metrics state from a registry via the Collect() method
  3. You use the text serializer to render the metrics to prometheus' text format
  4. You set a bunch of response headers for your response (see the exposer code or prometheus docs)
  5. Send the response and cross fingers

Let me know how that goes.

from prometheus-cpp.

benitogf avatar benitogf commented on June 15, 2024

Send the response and cross fingers
😄

Thanks for your kind response, I did exactly that, using only src/core was enough to setup the endpoint. Here's the endpoint handler as a reference in case that someone else needs to do something similar:

#pragma once
#include "seasocks/PageHandler.h"
#include "prometheus/registry.h"
#include "prometheus/serializer.h"
#include "prometheus/text_serializer.h"

using std::shared_ptr;
using seasocks::PageHandler;
using seasocks::Response;
using seasocks::Request;
using prometheus::Registry;
using prometheus::Serializer;
using prometheus::TextSerializer;

class MetricsHandler: public PageHandler {
 private:
  shared_ptr<Registry> metrics;
 public:
  explicit MetricsHandler(shared_ptr<Registry> metrics_registry):
    metrics(metrics_registry) {}
  virtual std::shared_ptr<Response> handle(const Request& request) {
    auto serializer = std::unique_ptr<Serializer>{new TextSerializer()};
    if (request.verb() == Request::Verb::Get &&
        request.getRequestUri() == "/metrics") {
      return Response::textResponse(
        serializer->Serialize(metrics.get()->Collect()));
    }
    return Response::unhandled();
  }
};

from prometheus-cpp.

yaminisridaran avatar yaminisridaran commented on June 15, 2024

I have a existing http server already running. I need to expose a metrics rest api and how to get the metrics to be sent to this metrics api.
Any pointers to some sample code for handling this situation.

from prometheus-cpp.

jupp0r avatar jupp0r commented on June 15, 2024

@yaminisridaran see the example code and verbal explanation above.

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.