Skip to content

Commit

Permalink
feat(metric): add prometheus interceptor
Browse files Browse the repository at this point in the history
  • Loading branch information
halibobo1205 committed Jun 25, 2024
1 parent d383177 commit 8fd2829
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
import org.tron.core.exception.ZksnarkException;
import org.tron.core.metrics.MetricsApiService;
import org.tron.core.services.filter.LiteFnQueryGrpcInterceptor;
import org.tron.core.services.ratelimiter.PrometheusInterceptor;
import org.tron.core.services.ratelimiter.RateLimiterInterceptor;
import org.tron.core.services.ratelimiter.RpcApiAccessInterceptor;
import org.tron.core.utils.TransactionUtil;
Expand Down Expand Up @@ -189,6 +190,8 @@ public class RpcApiService extends RpcService {
private RpcApiAccessInterceptor apiAccessInterceptor;
@Autowired
private MetricsApiService metricsApiService;
@Autowired
private PrometheusInterceptor prometheusInterceptor;
@Getter
private DatabaseApi databaseApi = new DatabaseApi();
private WalletApi walletApi = new WalletApi();
Expand Down Expand Up @@ -252,6 +255,11 @@ public void start() {
// add lite fullnode query interceptor
serverBuilder.intercept(liteFnQueryGrpcInterceptor);

// add prometheus interceptor
if (parameter.isMetricsPrometheusEnable()) {
serverBuilder.intercept(prometheusInterceptor);
}

if (parameter.isRpcReflectionServiceEnable()) {
serverBuilder.addService(ProtoReflectionService.newInstance());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
import org.tron.core.config.args.Args;
import org.tron.core.services.RpcApiService;
import org.tron.core.services.filter.LiteFnQueryGrpcInterceptor;
import org.tron.core.services.ratelimiter.PrometheusInterceptor;
import org.tron.core.services.ratelimiter.RateLimiterInterceptor;
import org.tron.core.services.ratelimiter.RpcApiAccessInterceptor;
import org.tron.protos.Protocol.Account;
Expand Down Expand Up @@ -79,6 +80,9 @@ public class RpcApiServiceOnPBFT extends RpcService {
@Autowired
private RpcApiAccessInterceptor apiAccessInterceptor;

@Autowired
private PrometheusInterceptor prometheusInterceptor;

private final String executorName = "rpc-pbft-executor";

@Override
Expand Down Expand Up @@ -124,6 +128,11 @@ public void start() {
// add lite fullnode query interceptor
serverBuilder.intercept(liteFnQueryGrpcInterceptor);

// add prometheus interceptor
if (args.isMetricsPrometheusEnable()) {
serverBuilder.intercept(prometheusInterceptor);
}

if (args.isRpcReflectionServiceEnable()) {
serverBuilder.addService(ProtoReflectionService.newInstance());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import org.tron.core.config.args.Args;
import org.tron.core.services.RpcApiService;
import org.tron.core.services.filter.LiteFnQueryGrpcInterceptor;
import org.tron.core.services.ratelimiter.PrometheusInterceptor;
import org.tron.core.services.ratelimiter.RateLimiterInterceptor;
import org.tron.core.services.ratelimiter.RpcApiAccessInterceptor;
import org.tron.protos.Protocol.Account;
Expand Down Expand Up @@ -81,6 +82,9 @@ public class RpcApiServiceOnSolidity extends RpcService {
@Autowired
private RpcApiAccessInterceptor apiAccessInterceptor;

@Autowired
private PrometheusInterceptor prometheusInterceptor;

private final String executorName = "rpc-solidity-executor";

@Override
Expand Down Expand Up @@ -125,6 +129,11 @@ public void start() {
// add lite fullnode query interceptor
serverBuilder.intercept(liteFnQueryGrpcInterceptor);

// add prometheus interceptor
if (parameter.isMetricsPrometheusEnable()) {
serverBuilder.intercept(prometheusInterceptor);
}

if (parameter.isRpcReflectionServiceEnable()) {
serverBuilder.addService(ProtoReflectionService.newInstance());
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@

package org.tron.core.services.ratelimiter;

import io.grpc.ForwardingServerCall;
import io.grpc.Metadata;
import io.grpc.ServerCall;
import io.grpc.ServerCallHandler;
import io.grpc.ServerInterceptor;
import io.grpc.Status;
import io.prometheus.client.Histogram;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.tron.common.prometheus.MetricKeys;
import org.tron.common.prometheus.Metrics;

/**
* A {@link ServerInterceptor} which sends latency stats about incoming grpc calls to Prometheus.
*/
@Slf4j(topic = "metrics")
@Component
public class PrometheusInterceptor implements ServerInterceptor {

@Override
public <R, S> ServerCall.Listener<R> interceptCall(
ServerCall<R, S> call, Metadata requestMetadata, ServerCallHandler<R, S> next) {
return next.startCall(new MonitoringServerCall<>(call), requestMetadata);
}

static class MonitoringServerCall<R, S> extends ForwardingServerCall
.SimpleForwardingServerCall<R, S> {

private final Histogram.Timer requestTimer;

MonitoringServerCall(ServerCall<R, S> delegate) {
super(delegate);
this.requestTimer = Metrics.histogramStartTimer(
MetricKeys.Histogram.GRPC_SERVICE_LATENCY, getMethodDescriptor().getFullMethodName());
}

@Override
public void close(Status status, Metadata responseHeaders) {
Metrics.histogramObserve(requestTimer);
super.close(status, responseHeaders);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@
import io.grpc.ServerCallHandler;
import io.grpc.ServerInterceptor;
import io.grpc.Status;
import io.prometheus.client.Histogram;
import java.util.List;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.tron.common.parameter.CommonParameter;
import org.tron.common.prometheus.MetricKeys;
import org.tron.common.prometheus.Metrics;

@Slf4j
@Component
Expand All @@ -32,11 +29,7 @@ public <ReqT, RespT> Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call,
return new ServerCall.Listener<ReqT>() {};

} else {
Histogram.Timer requestTimer = Metrics.histogramStartTimer(
MetricKeys.Histogram.GRPC_SERVICE_LATENCY, endpoint);
Listener<ReqT> res = next.startCall(call, headers);
Metrics.histogramObserve(requestTimer);
return res;
return next.startCall(call, headers);
}
} catch (Exception e) {
logger.error("check rpc api access Error: {}", e.getMessage());
Expand Down

0 comments on commit 8fd2829

Please sign in to comment.