1
1
package aggregation
2
2
3
3
import (
4
+ "sync"
5
+
4
6
"github.com/prometheus/client_golang/prometheus"
5
7
"github.com/prometheus/client_golang/prometheus/promauto"
6
8
7
9
"github.com/grafana/loki/v3/pkg/util/constants"
8
10
)
9
11
12
+ var (
13
+ aggMetrics * Metrics
14
+ metricsOnce sync.Once
15
+ )
16
+
10
17
type Metrics struct {
11
18
reg prometheus.Registerer
12
19
@@ -28,96 +35,80 @@ type Metrics struct {
28
35
}
29
36
30
37
func NewMetrics (r prometheus.Registerer ) * Metrics {
31
- var m Metrics
32
- m .reg = r
33
-
34
- m = Metrics {
35
- chunks : promauto .With (r ).NewGaugeVec (prometheus.GaugeOpts {
36
- Namespace : constants .Loki ,
37
- Subsystem : "pattern_ingester" ,
38
- Name : "metric_chunks" ,
39
- Help : "The total number of chunks in memory." ,
40
- }, []string {"service_name" }),
41
- samples : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
42
- Namespace : constants .Loki ,
43
- Subsystem : "pattern_ingester" ,
44
- Name : "metric_samples" ,
45
- Help : "The total number of samples in memory." ,
46
- }, []string {"service_name" }),
47
- pushErrors : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
48
- Namespace : constants .Loki ,
49
- Subsystem : "pattern_ingester" ,
50
- Name : "push_errors_total" ,
51
- Help : "Total number of errors when pushing metrics to Loki." ,
52
- }, []string {"tenant_id" , "error_type" }),
53
-
54
- pushRetries : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
55
- Namespace : constants .Loki ,
56
- Subsystem : "pattern_ingester" ,
57
- Name : "push_retries_total" ,
58
- Help : "Total number of retries when pushing metrics to Loki." ,
59
- }, []string {"tenant_id" }),
60
-
61
- pushSuccesses : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
62
- Namespace : constants .Loki ,
63
- Subsystem : "pattern_ingester" ,
64
- Name : "push_successes_total" ,
65
- Help : "Total number of successful pushes to Loki." ,
66
- }, []string {"tenant_id" }),
67
-
68
- // Batch metrics
69
- payloadSize : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
70
- Namespace : constants .Loki ,
71
- Subsystem : "pattern_ingester" ,
72
- Name : "push_payload_bytes" ,
73
- Help : "Size of push payloads in bytes." ,
74
- Buckets : []float64 {1024 , 4096 , 16384 , 65536 , 262144 , 1048576 },
75
- }, []string {"tenant_id" }),
76
-
77
- streamsPerPush : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
78
- Namespace : constants .Loki ,
79
- Subsystem : "pattern_ingester" ,
80
- Name : "streams_per_push" ,
81
- Help : "Number of streams in each push request." ,
82
- Buckets : []float64 {1 , 5 , 10 , 25 , 50 , 100 , 250 , 500 , 1000 },
83
- }, []string {"tenant_id" }),
84
-
85
- entriesPerPush : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
86
- Namespace : constants .Loki ,
87
- Subsystem : "pattern_ingester" ,
88
- Name : "entries_per_push" ,
89
- Help : "Number of entries in each push request." ,
90
- Buckets : []float64 {10 , 50 , 100 , 500 , 1000 , 5000 , 10000 },
91
- }, []string {"tenant_id" }),
92
-
93
- servicesTracked : promauto .With (r ).NewGaugeVec (prometheus.GaugeOpts {
94
- Namespace : constants .Loki ,
95
- Subsystem : "pattern_ingester" ,
96
- Name : "services_tracked" ,
97
- Help : "Number of unique services being tracked." ,
98
- }, []string {"tenant_id" }),
99
- writeTimeout : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
100
- Namespace : constants .Loki ,
101
- Subsystem : "pattern_ingester" ,
102
- Name : "write_timeouts_total" ,
103
- Help : "Total number of write timeouts." ,
104
- }, []string {"tenant_id" }),
105
- }
106
-
107
- if m .reg != nil {
108
- m .reg .MustRegister (
109
- m .chunks ,
110
- m .samples ,
111
- m .pushErrors ,
112
- m .pushRetries ,
113
- m .pushSuccesses ,
114
- m .payloadSize ,
115
- m .streamsPerPush ,
116
- m .entriesPerPush ,
117
- m .servicesTracked ,
118
- m .writeTimeout ,
119
- )
120
- }
121
-
122
- return & m
38
+ metricsOnce .Do (func () {
39
+ aggMetrics = & Metrics {
40
+ chunks : promauto .With (r ).NewGaugeVec (prometheus.GaugeOpts {
41
+ Namespace : constants .Loki ,
42
+ Subsystem : "pattern_ingester" ,
43
+ Name : "metric_chunks" ,
44
+ Help : "The total number of chunks in memory." ,
45
+ }, []string {"service_name" }),
46
+ samples : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
47
+ Namespace : constants .Loki ,
48
+ Subsystem : "pattern_ingester" ,
49
+ Name : "metric_samples" ,
50
+ Help : "The total number of samples in memory." ,
51
+ }, []string {"service_name" }),
52
+ pushErrors : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
53
+ Namespace : constants .Loki ,
54
+ Subsystem : "pattern_ingester" ,
55
+ Name : "push_errors_total" ,
56
+ Help : "Total number of errors when pushing metrics to Loki." ,
57
+ }, []string {"tenant_id" , "error_type" }),
58
+
59
+ pushRetries : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
60
+ Namespace : constants .Loki ,
61
+ Subsystem : "pattern_ingester" ,
62
+ Name : "push_retries_total" ,
63
+ Help : "Total number of retries when pushing metrics to Loki." ,
64
+ }, []string {"tenant_id" }),
65
+
66
+ pushSuccesses : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
67
+ Namespace : constants .Loki ,
68
+ Subsystem : "pattern_ingester" ,
69
+ Name : "push_successes_total" ,
70
+ Help : "Total number of successful pushes to Loki." ,
71
+ }, []string {"tenant_id" }),
72
+
73
+ // Batch metrics
74
+ payloadSize : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
75
+ Namespace : constants .Loki ,
76
+ Subsystem : "pattern_ingester" ,
77
+ Name : "push_payload_bytes" ,
78
+ Help : "Size of push payloads in bytes." ,
79
+ Buckets : []float64 {1024 , 4096 , 16384 , 65536 , 262144 , 1048576 },
80
+ }, []string {"tenant_id" }),
81
+
82
+ streamsPerPush : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
83
+ Namespace : constants .Loki ,
84
+ Subsystem : "pattern_ingester" ,
85
+ Name : "streams_per_push" ,
86
+ Help : "Number of streams in each push request." ,
87
+ Buckets : []float64 {1 , 5 , 10 , 25 , 50 , 100 , 250 , 500 , 1000 },
88
+ }, []string {"tenant_id" }),
89
+
90
+ entriesPerPush : promauto .With (r ).NewHistogramVec (prometheus.HistogramOpts {
91
+ Namespace : constants .Loki ,
92
+ Subsystem : "pattern_ingester" ,
93
+ Name : "entries_per_push" ,
94
+ Help : "Number of entries in each push request." ,
95
+ Buckets : []float64 {10 , 50 , 100 , 500 , 1000 , 5000 , 10000 },
96
+ }, []string {"tenant_id" }),
97
+
98
+ servicesTracked : promauto .With (r ).NewGaugeVec (prometheus.GaugeOpts {
99
+ Namespace : constants .Loki ,
100
+ Subsystem : "pattern_ingester" ,
101
+ Name : "services_tracked" ,
102
+ Help : "Number of unique services being tracked." ,
103
+ }, []string {"tenant_id" }),
104
+ writeTimeout : promauto .With (r ).NewCounterVec (prometheus.CounterOpts {
105
+ Namespace : constants .Loki ,
106
+ Subsystem : "pattern_ingester" ,
107
+ Name : "write_timeouts_total" ,
108
+ Help : "Total number of write timeouts." ,
109
+ }, []string {"tenant_id" }),
110
+ }
111
+ })
112
+
113
+ return aggMetrics
123
114
}
0 commit comments