rpc: add metrics for generic json rpc

This commit is contained in:
rjl493456442 2020-04-01 15:13:17 +08:00
parent 8f05cfa122
commit b741036e0a
2 changed files with 54 additions and 1 deletions

View file

@ -327,8 +327,22 @@ func (h *handler) handleCall(cp *callProc, msg *jsonrpcMessage) *jsonrpcMessage
if err != nil {
return msg.errorResponse(&invalidParamsError{err.Error()})
}
start := time.Now()
answer := h.runMethod(cp.ctx, msg, callb, args)
return h.runMethod(cp.ctx, msg, callb, args)
// Collect the statistics for RPC calls if metrics is enabled.
// We only care about pure rpc call. Filter out subscription.
if callb != h.unsubscribeCb {
jsonrpcRequestGauge.Inc(1)
if answer.Error != nil {
invalidReqeustGauge.Inc(1)
} else {
validRequestGauge.Inc(1)
}
jsonrpcServingTimer.UpdateSince(start)
newJsonrpcServingTimer(msg.Version, msg.Method, answer.Error == nil).UpdateSince(start)
}
return answer
}
// handleSubscribe processes *_subscribe method calls.

39
rpc/metrics.go Normal file
View file

@ -0,0 +1,39 @@
// Copyright 2020 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package rpc
import (
"fmt"
"github.com/ethereum/go-ethereum/metrics"
)
var (
jsonrpcRequestGauge = metrics.NewRegisteredGauge("rpc/jsonrpc/count/in", nil)
validRequestGauge = metrics.NewRegisteredGauge("rpc/jsonrpc/count/valid", nil)
invalidReqeustGauge = metrics.NewRegisteredGauge("rpc/jsonrpc/count/invalid", nil)
jsonrpcServingTimer = metrics.NewRegisteredTimer("rpc/jsonrpc/duration/all", nil)
)
func newJsonrpcServingTimer(version string, method string, valid bool) metrics.Timer {
flag := "success"
if !valid {
flag = "failure"
}
m := fmt.Sprintf("rpc/jsonrpc/duration/%s/%s/%s", version, method, flag)
return metrics.GetOrRegisterTimer(m, nil)
}