1 Star 0 Fork 0

陈文甲 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
metrics.go 3.27 KB
一键复制 编辑 原始数据 按行查看 历史
muralisr 提交于 2018-11-30 16:30 . add endorser metrics
/*
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: "propsal_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}",
}
)
type EndorserMetrics 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
}
func NewEndorserMetrics(p metrics.Provider) *EndorserMetrics {
return &EndorserMetrics{
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),
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/venjia/fabric.git
git@gitee.com:venjia/fabric.git
venjia
fabric
fabric
v1.4.1-rc1

搜索帮助

344bd9b3 5694891 D2dac590 5694891