diff --git a/src/main/kotlin/io/emeraldpay/dshackle/rpc/BlockchainRpc.kt b/src/main/kotlin/io/emeraldpay/dshackle/rpc/BlockchainRpc.kt index 1b83b5b9..c5c5b9f7 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/rpc/BlockchainRpc.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/rpc/BlockchainRpc.kt @@ -49,9 +49,11 @@ class BlockchainRpc( private val describeMetric = Counter.builder("request.grpc.request") .tag("type", "describe") + .tag("chain", "NA") .register(Metrics.globalRegistry) private val subscribeStatusMetric = Counter.builder("request.grpc.request") .tag("type", "subscribeStatus") + .tag("chain", "NA") .register(Metrics.globalRegistry) private val errorMetric = Counter.builder("request.grpc.err") .register(Metrics.globalRegistry)