forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metrics.go
103 lines (89 loc) · 3.64 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
/*
Copyright State Street Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package endorser
import "github.com/hyperledger/fabric/common/metrics"
var (
proposalDurationHistogramOpts = metrics.HistogramOpts{
Namespace: "endorser",
Name: "proposal_duration",
Help: "The time to complete a proposal.",
LabelNames: []string{"channel", "chaincode", "success"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}.%{success}",
}
receivedProposalsCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "proposals_received",
Help: "The number of proposals received.",
}
successfulProposalsCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "successful_proposals",
Help: "The number of successful proposals.",
}
proposalValidationFailureCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "proposal_validation_failures",
Help: "The number of proposals that have failed initial validation.",
}
proposalChannelACLFailureOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "proposal_acl_failures",
Help: "The number of proposals that failed ACL checks.",
LabelNames: []string{"channel", "chaincode"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}",
}
initFailureCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "chaincode_instantiation_failures",
Help: "The number of chaincode instantiations or upgrade that have failed.",
LabelNames: []string{"channel", "chaincode"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}",
}
endorsementFailureCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "endorsement_failures",
Help: "The number of failed endorsements.",
LabelNames: []string{"channel", "chaincode", "chaincodeerror"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}.%{chaincodeerror}",
}
duplicateTxsFailureCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "duplicate_transaction_failures",
Help: "The number of failed proposals due to duplicate transaction ID.",
LabelNames: []string{"channel", "chaincode"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}",
}
simulationFailureCounterOpts = metrics.CounterOpts{
Namespace: "endorser",
Name: "proposal_simulation_failures",
Help: "The number of failed proposal simulations",
LabelNames: []string{"channel", "chaincode"},
StatsdFormat: "%{#fqname}.%{channel}.%{chaincode}",
}
)
type Metrics struct {
ProposalDuration metrics.Histogram
ProposalsReceived metrics.Counter
SuccessfulProposals metrics.Counter
ProposalValidationFailed metrics.Counter
ProposalACLCheckFailed metrics.Counter
InitFailed metrics.Counter
EndorsementsFailed metrics.Counter
DuplicateTxsFailure metrics.Counter
SimulationFailure metrics.Counter
}
func NewMetrics(p metrics.Provider) *Metrics {
return &Metrics{
ProposalDuration: p.NewHistogram(proposalDurationHistogramOpts),
ProposalsReceived: p.NewCounter(receivedProposalsCounterOpts),
SuccessfulProposals: p.NewCounter(successfulProposalsCounterOpts),
ProposalValidationFailed: p.NewCounter(proposalValidationFailureCounterOpts),
ProposalACLCheckFailed: p.NewCounter(proposalChannelACLFailureOpts),
InitFailed: p.NewCounter(initFailureCounterOpts),
EndorsementsFailed: p.NewCounter(endorsementFailureCounterOpts),
DuplicateTxsFailure: p.NewCounter(duplicateTxsFailureCounterOpts),
SimulationFailure: p.NewCounter(simulationFailureCounterOpts),
}
}