63 Star 186 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
metrics.go 3.64 KB
一键复制 编辑 原始数据 按行查看 历史
/*
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),
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v2.1.1

搜索帮助