mirror of
https://github.com/cirocosta/monero-exporter.git
synced 2024-10-01 08:25:41 -04:00
debdce3fb2
this is a big refactor, essentially rewriting the custom collector from scratch, and as such, creating a new dashboard based on the new metrics. Signed-off-by: Ciro S. Costa <utxobr@protonmail.com>
140 lines
2.6 KiB
Go
140 lines
2.6 KiB
Go
package collector
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/cirocosta/go-monero/pkg/rpc/daemon"
|
|
)
|
|
|
|
type OverallCollector struct {
|
|
client *daemon.Client
|
|
metricsC chan<- prometheus.Metric
|
|
|
|
info *daemon.GetInfoResult
|
|
}
|
|
|
|
var _ CustomCollector = (*OverallCollector)(nil)
|
|
|
|
func NewOverallCollector(
|
|
client *daemon.Client, metricsC chan<- prometheus.Metric,
|
|
) *OverallCollector {
|
|
return &OverallCollector{
|
|
client: client,
|
|
metricsC: metricsC,
|
|
}
|
|
}
|
|
|
|
func (c *OverallCollector) Name() string {
|
|
return "overall"
|
|
}
|
|
|
|
func (c *OverallCollector) Collect(ctx context.Context) error {
|
|
err := c.fetchData(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("fetch data: %w", err)
|
|
}
|
|
|
|
c.collect()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *OverallCollector) fetchData(ctx context.Context) error {
|
|
res, err := c.client.GetInfo(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("get netstats: %w", err)
|
|
}
|
|
|
|
c.info = res
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *OverallCollector) collect() {
|
|
now := time.Now()
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_uptime_seconds_total",
|
|
"for how long this node has been up",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
float64(now.
|
|
Sub(time.Unix(int64(c.info.StartTime), 0)).
|
|
Seconds()),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_alternative_blocks",
|
|
"number of blocks alternative to the longest",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
float64(c.info.AltBlocksCount),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_offline",
|
|
"whether the node is offline",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
boolToFloat64(c.info.Offline),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_mainnet",
|
|
"whether the node is connected to mainnet",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
boolToFloat64(c.info.Mainnet),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_block_size_limit",
|
|
"maximum hard limit of a block",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
float64(c.info.BlockSizeLimit),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_block_size_median",
|
|
"current median size for computing dynamic fees",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
float64(c.info.BlockSizeMedian),
|
|
)
|
|
|
|
c.metricsC <- prometheus.MustNewConstMetric(
|
|
prometheus.NewDesc(
|
|
"monero_info_synchronized",
|
|
"",
|
|
nil, nil,
|
|
),
|
|
prometheus.GaugeValue,
|
|
boolToFloat64(c.info.Synchronized),
|
|
)
|
|
}
|
|
|
|
func boolToFloat64(b bool) float64 {
|
|
if b {
|
|
return 1
|
|
}
|
|
|
|
return 0
|
|
}
|