forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics.go
267 lines (235 loc) · 7.95 KB
/
metrics.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package metrics
import "github.com/hyperledger/fabric/common/metrics"
// GossipMetrics encapsulates all of gossip metrics
type GossipMetrics struct {
StateMetrics *StateMetrics
ElectionMetrics *ElectionMetrics
CommMetrics *CommMetrics
MembershipMetrics *MembershipMetrics
PrivdataMetrics *PrivdataMetrics
}
func NewGossipMetrics(p metrics.Provider) *GossipMetrics {
return &GossipMetrics{
StateMetrics: newStateMetrics(p),
ElectionMetrics: newElectionMetrics(p),
CommMetrics: newCommMetrics(p),
MembershipMetrics: newMembershipMetrics(p),
PrivdataMetrics: newPrivdataMetrics(p),
}
}
// StateMetrics encapsulates gossip state related metrics
type StateMetrics struct {
Height metrics.Gauge
CommitDuration metrics.Histogram
PayloadBufferSize metrics.Gauge
}
func newStateMetrics(p metrics.Provider) *StateMetrics {
return &StateMetrics{
Height: p.NewGauge(HeightOpts),
CommitDuration: p.NewHistogram(CommitDurationOpts),
PayloadBufferSize: p.NewGauge(PayloadBufferSizeOpts),
}
}
var (
HeightOpts = metrics.GaugeOpts{
Namespace: "gossip",
Subsystem: "state",
Name: "height",
Help: "Current ledger height",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
CommitDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "state",
Name: "commit_duration",
Help: "Time it takes to commit a block in seconds",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
PayloadBufferSizeOpts = metrics.GaugeOpts{
Namespace: "gossip",
Subsystem: "payload_buffer",
Name: "size",
Help: "Size of the payload buffer",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
)
// ElectionMetrics encapsulates gossip leader election related metrics
type ElectionMetrics struct {
Declaration metrics.Gauge
}
func newElectionMetrics(p metrics.Provider) *ElectionMetrics {
return &ElectionMetrics{
Declaration: p.NewGauge(LeaderDeclerationOpts),
}
}
var (
LeaderDeclerationOpts = metrics.GaugeOpts{
Namespace: "gossip",
Subsystem: "leader_election",
Name: "leader",
Help: "Peer is leader (1) or follower (0)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
)
// CommMetrics encapsulates gossip communication related metrics
type CommMetrics struct {
SentMessages metrics.Counter
BufferOverflow metrics.Counter
ReceivedMessages metrics.Counter
}
func newCommMetrics(p metrics.Provider) *CommMetrics {
return &CommMetrics{
SentMessages: p.NewCounter(SentMessagesOpts),
BufferOverflow: p.NewCounter(BufferOverflowOpts),
ReceivedMessages: p.NewCounter(ReceivedMessagesOpts),
}
}
var (
SentMessagesOpts = metrics.CounterOpts{
Namespace: "gossip",
Subsystem: "comm",
Name: "messages_sent",
Help: "Number of messages sent",
StatsdFormat: "%{#fqname}",
}
BufferOverflowOpts = metrics.CounterOpts{
Namespace: "gossip",
Subsystem: "comm",
Name: "overflow_count",
Help: "Number of outgoing queue buffer overflows",
StatsdFormat: "%{#fqname}",
}
ReceivedMessagesOpts = metrics.CounterOpts{
Namespace: "gossip",
Subsystem: "comm",
Name: "messages_received",
Help: "Number of messages received",
StatsdFormat: "%{#fqname}",
}
)
// MembershipMetrics encapsulates gossip channel membership related metrics
type MembershipMetrics struct {
Total metrics.Gauge
}
func newMembershipMetrics(p metrics.Provider) *MembershipMetrics {
return &MembershipMetrics{
Total: p.NewGauge(TotalOpts),
}
}
var (
TotalOpts = metrics.GaugeOpts{
Namespace: "gossip",
Subsystem: "membership",
Name: "total_peers_known",
Help: "Total known peers",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
)
// PrivdataMetrics encapsulates gossip private data related metrics
type PrivdataMetrics struct {
ValidationDuration metrics.Histogram
ListMissingPrivateDataDuration metrics.Histogram
FetchDuration metrics.Histogram
CommitPrivateDataDuration metrics.Histogram
PurgeDuration metrics.Histogram
SendDuration metrics.Histogram
ReconciliationDuration metrics.Histogram
PullDuration metrics.Histogram
RetrieveDuration metrics.Histogram
}
func newPrivdataMetrics(p metrics.Provider) *PrivdataMetrics {
return &PrivdataMetrics{
ValidationDuration: p.NewHistogram(ValidationDurationOpts),
ListMissingPrivateDataDuration: p.NewHistogram(ListMissingPrivateDataDurationOpts),
FetchDuration: p.NewHistogram(FetchDurationOpts),
CommitPrivateDataDuration: p.NewHistogram(CommitPrivateDataDurationOpts),
PurgeDuration: p.NewHistogram(PurgeDurationOpts),
SendDuration: p.NewHistogram(SendDurationOpts),
ReconciliationDuration: p.NewHistogram(ReconciliationDurationOpts),
PullDuration: p.NewHistogram(PullDurationOpts),
RetrieveDuration: p.NewHistogram(RetrieveDurationOpts),
}
}
var (
ValidationDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "validation_duration",
Help: "Time it takes to validate a block (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
ListMissingPrivateDataDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "list_missing_duration",
Help: "Time it takes to list the missing private data (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
FetchDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "fetch_duration",
Help: "Time it takes to fetch missing private data from peers (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
CommitPrivateDataDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "commit_block_duration",
Help: "Time it takes to commit private data and the corresponding block (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
PurgeDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "purge_duration",
Help: "Time it takes to purge private data (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
SendDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "send_duration",
Help: "Time it takes to send a missing private data element (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
ReconciliationDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "reconciliation_duration",
Help: "Time it takes for reconciliation to complete (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
PullDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "pull_duration",
Help: "Time it takes to pull a missing private data element (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
RetrieveDurationOpts = metrics.HistogramOpts{
Namespace: "gossip",
Subsystem: "privdata",
Name: "retrieve_duration",
Help: "Time it takes to retrieve missing private data elements from the ledger (in seconds)",
LabelNames: []string{"channel"},
StatsdFormat: "%{#fqname}.%{channel}",
}
)