mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-06 17:41:04 +00:00
Add more Prometheus metrics (#12274)
This commit is contained in:
parent
c2898f53bc
commit
f5a8593b11
10 changed files with 225 additions and 120 deletions
|
@ -18,6 +18,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
*/
|
||||
|
||||
#include "metricsbackend.h"
|
||||
#include "util/thread.h"
|
||||
#if USE_PROMETHEUS
|
||||
#include <prometheus/exposer.h>
|
||||
#include <prometheus/registry.h>
|
||||
|
@ -27,18 +28,78 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
#include "settings.h"
|
||||
#endif
|
||||
|
||||
MetricCounterPtr MetricsBackend::addCounter(
|
||||
const std::string &name, const std::string &help_str)
|
||||
/* Plain implementation */
|
||||
|
||||
class SimpleMetricCounter : public MetricCounter
|
||||
{
|
||||
return std::make_shared<SimpleMetricCounter>(name, help_str);
|
||||
public:
|
||||
SimpleMetricCounter() : MetricCounter(), m_counter(0.0) {}
|
||||
|
||||
virtual ~SimpleMetricCounter() {}
|
||||
|
||||
void increment(double number) override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_counter += number;
|
||||
}
|
||||
double get() const override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
return m_counter;
|
||||
}
|
||||
|
||||
private:
|
||||
mutable std::mutex m_mutex;
|
||||
double m_counter;
|
||||
};
|
||||
|
||||
class SimpleMetricGauge : public MetricGauge
|
||||
{
|
||||
public:
|
||||
SimpleMetricGauge() : MetricGauge(), m_gauge(0.0) {}
|
||||
|
||||
virtual ~SimpleMetricGauge() {}
|
||||
|
||||
void increment(double number) override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge += number;
|
||||
}
|
||||
void decrement(double number) override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge -= number;
|
||||
}
|
||||
void set(double number) override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge = number;
|
||||
}
|
||||
double get() const override
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
return m_gauge;
|
||||
}
|
||||
|
||||
private:
|
||||
mutable std::mutex m_mutex;
|
||||
double m_gauge;
|
||||
};
|
||||
|
||||
MetricCounterPtr MetricsBackend::addCounter(
|
||||
const std::string &name, const std::string &help_str, Labels labels)
|
||||
{
|
||||
return std::make_shared<SimpleMetricCounter>();
|
||||
}
|
||||
|
||||
MetricGaugePtr MetricsBackend::addGauge(
|
||||
const std::string &name, const std::string &help_str)
|
||||
const std::string &name, const std::string &help_str, Labels labels)
|
||||
{
|
||||
return std::make_shared<SimpleMetricGauge>(name, help_str);
|
||||
return std::make_shared<SimpleMetricGauge>();
|
||||
}
|
||||
|
||||
/* Prometheus backend */
|
||||
|
||||
#if USE_PROMETHEUS
|
||||
|
||||
class PrometheusMetricCounter : public MetricCounter
|
||||
|
@ -47,13 +108,14 @@ public:
|
|||
PrometheusMetricCounter() = delete;
|
||||
|
||||
PrometheusMetricCounter(const std::string &name, const std::string &help_str,
|
||||
MetricsBackend::Labels labels,
|
||||
std::shared_ptr<prometheus::Registry> registry) :
|
||||
MetricCounter(),
|
||||
m_family(prometheus::BuildCounter()
|
||||
.Name(name)
|
||||
.Help(help_str)
|
||||
.Register(*registry)),
|
||||
m_counter(m_family.Add({}))
|
||||
m_counter(m_family.Add(labels))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -73,13 +135,14 @@ public:
|
|||
PrometheusMetricGauge() = delete;
|
||||
|
||||
PrometheusMetricGauge(const std::string &name, const std::string &help_str,
|
||||
MetricsBackend::Labels labels,
|
||||
std::shared_ptr<prometheus::Registry> registry) :
|
||||
MetricGauge(),
|
||||
m_family(prometheus::BuildGauge()
|
||||
.Name(name)
|
||||
.Help(help_str)
|
||||
.Register(*registry)),
|
||||
m_gauge(m_family.Add({}))
|
||||
m_gauge(m_family.Add(labels))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -107,10 +170,12 @@ public:
|
|||
|
||||
virtual ~PrometheusMetricsBackend() {}
|
||||
|
||||
virtual MetricCounterPtr addCounter(
|
||||
const std::string &name, const std::string &help_str);
|
||||
virtual MetricGaugePtr addGauge(
|
||||
const std::string &name, const std::string &help_str);
|
||||
MetricCounterPtr addCounter(
|
||||
const std::string &name, const std::string &help_str,
|
||||
Labels labels = {}) override;
|
||||
MetricGaugePtr addGauge(
|
||||
const std::string &name, const std::string &help_str,
|
||||
Labels labels = {}) override;
|
||||
|
||||
private:
|
||||
std::unique_ptr<prometheus::Exposer> m_exposer;
|
||||
|
@ -118,15 +183,15 @@ private:
|
|||
};
|
||||
|
||||
MetricCounterPtr PrometheusMetricsBackend::addCounter(
|
||||
const std::string &name, const std::string &help_str)
|
||||
const std::string &name, const std::string &help_str, Labels labels)
|
||||
{
|
||||
return std::make_shared<PrometheusMetricCounter>(name, help_str, m_registry);
|
||||
return std::make_shared<PrometheusMetricCounter>(name, help_str, labels, m_registry);
|
||||
}
|
||||
|
||||
MetricGaugePtr PrometheusMetricsBackend::addGauge(
|
||||
const std::string &name, const std::string &help_str)
|
||||
const std::string &name, const std::string &help_str, Labels labels)
|
||||
{
|
||||
return std::make_shared<PrometheusMetricGauge>(name, help_str, m_registry);
|
||||
return std::make_shared<PrometheusMetricGauge>(name, help_str, labels, m_registry);
|
||||
}
|
||||
|
||||
MetricsBackend *createPrometheusMetricsBackend()
|
||||
|
|
|
@ -19,8 +19,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
|
||||
#pragma once
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include "config.h"
|
||||
#include "util/thread.h"
|
||||
|
||||
class MetricCounter
|
||||
{
|
||||
|
@ -35,38 +36,6 @@ public:
|
|||
|
||||
typedef std::shared_ptr<MetricCounter> MetricCounterPtr;
|
||||
|
||||
class SimpleMetricCounter : public MetricCounter
|
||||
{
|
||||
public:
|
||||
SimpleMetricCounter() = delete;
|
||||
|
||||
virtual ~SimpleMetricCounter() {}
|
||||
|
||||
SimpleMetricCounter(const std::string &name, const std::string &help_str) :
|
||||
MetricCounter(), m_name(name), m_help_str(help_str),
|
||||
m_counter(0.0)
|
||||
{
|
||||
}
|
||||
|
||||
virtual void increment(double number)
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_counter += number;
|
||||
}
|
||||
virtual double get() const
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
return m_counter;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string m_name;
|
||||
std::string m_help_str;
|
||||
|
||||
mutable std::mutex m_mutex;
|
||||
double m_counter;
|
||||
};
|
||||
|
||||
class MetricGauge
|
||||
{
|
||||
public:
|
||||
|
@ -81,47 +50,6 @@ public:
|
|||
|
||||
typedef std::shared_ptr<MetricGauge> MetricGaugePtr;
|
||||
|
||||
class SimpleMetricGauge : public MetricGauge
|
||||
{
|
||||
public:
|
||||
SimpleMetricGauge() = delete;
|
||||
|
||||
SimpleMetricGauge(const std::string &name, const std::string &help_str) :
|
||||
MetricGauge(), m_name(name), m_help_str(help_str), m_gauge(0.0)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~SimpleMetricGauge() {}
|
||||
|
||||
virtual void increment(double number)
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge += number;
|
||||
}
|
||||
virtual void decrement(double number)
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge -= number;
|
||||
}
|
||||
virtual void set(double number)
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
m_gauge = number;
|
||||
}
|
||||
virtual double get() const
|
||||
{
|
||||
MutexAutoLock lock(m_mutex);
|
||||
return m_gauge;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string m_name;
|
||||
std::string m_help_str;
|
||||
|
||||
mutable std::mutex m_mutex;
|
||||
double m_gauge;
|
||||
};
|
||||
|
||||
class MetricsBackend
|
||||
{
|
||||
public:
|
||||
|
@ -129,10 +57,14 @@ public:
|
|||
|
||||
virtual ~MetricsBackend() {}
|
||||
|
||||
typedef std::initializer_list<std::pair<const std::string, std::string>> Labels;
|
||||
|
||||
virtual MetricCounterPtr addCounter(
|
||||
const std::string &name, const std::string &help_str);
|
||||
const std::string &name, const std::string &help_str,
|
||||
Labels labels = {});
|
||||
virtual MetricGaugePtr addGauge(
|
||||
const std::string &name, const std::string &help_str);
|
||||
const std::string &name, const std::string &help_str,
|
||||
Labels labels = {});
|
||||
};
|
||||
|
||||
#if USE_PROMETHEUS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue