Skip to content

Commit 2abed4f

Browse files
authored
Add metrics and logging for transaction traffic split (#10625)
* Add metrics and logging for transaction traffic split * update direct transaction traffic logic --------- Signed-off-by: sdimitrov9 <[email protected]>
1 parent dc317f4 commit 2abed4f

10 files changed

+52
-17
lines changed

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/controller/GenericControllerAdvice.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,12 @@ private ResponseEntity<?> badRequest(final Exception e, final WebRequest request
7373

7474
@ExceptionHandler
7575
private ResponseEntity<?> mirrorEvmTransactionError(final MirrorEvmTransactionException e, WebRequest request) {
76-
log.warn("Mirror EVM transaction error: {}, detail: {}, data: {}", e.getMessage(), e.getDetail(), e.getData());
76+
log.warn(
77+
"Mirror EVM transaction error: {}, detail: {}, data: {}, isCallModularized: {}",
78+
e.getMessage(),
79+
e.getDetail(),
80+
e.getData(),
81+
e.getIsCallModularized());
7782
request.setAttribute(WebUtils.ERROR_EXCEPTION_ATTRIBUTE, e, SCOPE_REQUEST);
7883
return new ResponseEntity<>(new GenericErrorResponse(e.getMessage(), e.getDetail(), e.getData()), BAD_REQUEST);
7984
}

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/evm/properties/MirrorNodeEvmProperties.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,8 @@ private Map<String, String> buildTransactionProperties() {
347347
* @return true if the random value between 0 and 1 is less than modularizedTrafficPercent
348348
*/
349349
public boolean directTrafficThroughTransactionExecutionService() {
350-
return RandomUtils.secure().randomDouble(0.0d, 1.0d) < getModularizedTrafficPercent();
350+
return isModularizedServices()
351+
&& RandomUtils.secure().randomDouble(0.0d, 1.0d) < getModularizedTrafficPercent();
351352
}
352353

353354
@Getter

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/exception/MirrorEvmTransactionException.java

+11-3
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,33 @@ public class MirrorEvmTransactionException extends EvmException {
2323

2424
private final String detail;
2525
private final String data;
26+
private final Boolean isCallModularized;
2627
private final transient HederaEvmTransactionProcessingResult result;
2728

2829
public MirrorEvmTransactionException(
2930
final ResponseCodeEnum responseCode, final String detail, final String hexData) {
30-
this(responseCode.name(), detail, hexData, null);
31+
this(responseCode.name(), detail, hexData, null, null);
3132
}
3233

3334
public MirrorEvmTransactionException(final String message, final String detail, final String hexData) {
34-
this(message, detail, hexData, null);
35+
this(message, detail, hexData, null, null);
36+
}
37+
38+
public MirrorEvmTransactionException(
39+
final String message, final String detail, final String hexData, final Boolean isCallModularized) {
40+
this(message, detail, hexData, null, isCallModularized);
3541
}
3642

3743
public MirrorEvmTransactionException(
3844
final String message,
3945
final String detail,
4046
final String hexData,
41-
HederaEvmTransactionProcessingResult result) {
47+
HederaEvmTransactionProcessingResult result,
48+
final Boolean isCallModularized) {
4249
super(message);
4350
this.detail = detail;
4451
this.data = hexData;
52+
this.isCallModularized = isCallModularized;
4553
this.result = result;
4654
}
4755

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/service/ContractCallService.java

+8-5
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ protected HederaEvmTransactionProcessingResult callContract(CallServiceParameter
107107
}
108108

109109
var result = doProcessCall(params, params.getGas(), true);
110-
validateResult(result, params.getCallType());
110+
validateResult(result, params.getCallType(), params.isModularized());
111111
return result;
112112
}
113113

@@ -152,13 +152,14 @@ private void restoreGasToBucket(HederaEvmTransactionProcessingResult result, lon
152152
}
153153
}
154154

155-
protected void validateResult(final HederaEvmTransactionProcessingResult txnResult, final CallType type) {
155+
protected void validateResult(
156+
final HederaEvmTransactionProcessingResult txnResult, final CallType type, final boolean modularized) {
156157
if (!txnResult.isSuccessful()) {
157158
updateGasUsedMetric(ERROR, txnResult.getGasUsed(), 1);
158159
var revertReason = txnResult.getRevertReason().orElse(Bytes.EMPTY);
159160
var detail = maybeDecodeSolidityErrorStringToReadableMessage(revertReason);
160161
throw new MirrorEvmTransactionException(
161-
getStatusOrDefault(txnResult).name(), detail, revertReason.toHexString(), txnResult);
162+
getStatusOrDefault(txnResult).name(), detail, revertReason.toHexString(), txnResult, modularized);
162163
} else {
163164
updateGasUsedMetric(type, txnResult.getGasUsed(), 1);
164165
}
@@ -170,7 +171,9 @@ protected void updateGasUsedMetric(final CallType callType, final long gasUsed,
170171
.increment(gasUsed);
171172
}
172173

173-
protected void updateGasLimitMetric(final CallType callType, final long gasLimit) {
174-
gasLimitCounter.withTags("type", callType.toString()).increment(gasLimit);
174+
protected void updateGasLimitMetric(final CallType callType, final long gasLimit, final boolean modularized) {
175+
gasLimitCounter
176+
.withTags("type", callType.toString(), "modularized", String.valueOf(modularized))
177+
.increment(gasLimit);
175178
}
176179
}

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/service/ContractDebugService.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,16 @@ public OpcodesProcessingResult processOpcodeCall(
6161
ctx.setContractActions(contractActionRepository.findFailedSystemActionsByConsensusTimestamp(
6262
params.getConsensusTimestamp()));
6363
final var ethCallTxnResult = callContract(params, ctx);
64-
validateResult(ethCallTxnResult, params.getCallType());
64+
validateResult(ethCallTxnResult, params.getCallType(), params.isModularized());
6565
return new OpcodesProcessingResult(ethCallTxnResult, ctx.getOpcodes());
6666
});
6767
}
6868

6969
@Override
70-
protected void validateResult(final HederaEvmTransactionProcessingResult txnResult, final CallType type) {
70+
protected void validateResult(
71+
final HederaEvmTransactionProcessingResult txnResult, final CallType type, boolean modularized) {
7172
try {
72-
super.validateResult(txnResult, type);
73+
super.validateResult(txnResult, type, modularized);
7374
} catch (MirrorEvmTransactionException e) {
7475
log.warn(
7576
"Transaction failed with status: {}, detail: {}, revertReason: {}",

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/service/ContractExecutionService.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public String processCall(final ContractExecutionParameters params) {
5454
var stringResult = "";
5555

5656
try {
57-
updateGasLimitMetric(params.getCallType(), params.getGas());
57+
updateGasLimitMetric(params.getCallType(), params.getGas(), params.isModularized());
5858

5959
Bytes result;
6060
if (params.isEstimate()) {
@@ -86,7 +86,7 @@ public String processCall(final ContractExecutionParameters params) {
8686
*/
8787
private Bytes estimateGas(final ContractExecutionParameters params, final ContractCallContext context) {
8888
final var processingResult = callContract(params, context);
89-
validateResult(processingResult, CallType.ETH_ESTIMATE_GAS);
89+
validateResult(processingResult, CallType.ETH_ESTIMATE_GAS, params.isModularized());
9090

9191
final var gasUsedByInitialCall = processingResult.getGasUsed();
9292

hedera-mirror-web3/src/main/java/com/hedera/mirror/web3/service/TransactionExecutionService.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private HederaEvmTransactionProcessingResult handleFailedResult(
126126
if (result == null) {
127127
// No result - the call did not reach the EVM and probably failed at pre-checks. No metric to update in this
128128
// case.
129-
throw new MirrorEvmTransactionException(status.protoName(), StringUtils.EMPTY, StringUtils.EMPTY);
129+
throw new MirrorEvmTransactionException(status.protoName(), StringUtils.EMPTY, StringUtils.EMPTY, true);
130130
} else {
131131
var errorMessage = getErrorMessage(result).orElse(Bytes.EMPTY);
132132
var detail = maybeDecodeSolidityErrorStringToReadableMessage(errorMessage);
@@ -137,7 +137,8 @@ private HederaEvmTransactionProcessingResult handleFailedResult(
137137
detail,
138138
errorMessage.toHexString(),
139139
HederaEvmTransactionProcessingResult.failed(
140-
result.gasUsed(), 0L, 0L, Optional.of(errorMessage), Optional.empty()));
140+
result.gasUsed(), 0L, 0L, Optional.of(errorMessage), Optional.empty()),
141+
true);
141142
} else {
142143
// If we are in an opcode trace scenario, we need to return a failed result in order to get the
143144
// opcode list from the ContractCallContext. If we throw an exception instead of returning a result,

hedera-mirror-web3/src/test/java/com/hedera/mirror/web3/service/AbstractContractCallServiceOpcodeTracerTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ abstract class AbstractContractCallServiceOpcodeTracerTest extends AbstractContr
7070
@BeforeEach
7171
void setUpArgumentCaptors() {
7272
if (!mirrorNodeEvmProperties.isModularizedServices()) {
73+
mirrorNodeEvmProperties.setModularizedTrafficPercent(0.0);
7374
doAnswer(invocation -> {
7475
final var transactionProcessingResult =
7576
(HederaEvmTransactionProcessingResult) invocation.callRealMethod();
@@ -80,6 +81,7 @@ void setUpArgumentCaptors() {
8081
.when(processor)
8182
.execute(paramsCaptor.capture(), gasCaptor.capture());
8283
} else {
84+
mirrorNodeEvmProperties.setModularizedTrafficPercent(1.0);
8385
doAnswer(invocation -> {
8486
final var transactionProcessingResult =
8587
(HederaEvmTransactionProcessingResult) invocation.callRealMethod();

hedera-mirror-web3/src/test/java/com/hedera/mirror/web3/service/AbstractContractCallServiceTest.java

+2
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@ protected void setup() {
121121
modularizedTrafficPercent = mirrorNodeEvmProperties.getModularizedTrafficPercent();
122122
if (mirrorNodeEvmProperties.isModularizedServices()) {
123123
mirrorNodeEvmProperties.setModularizedTrafficPercent(1.0);
124+
} else {
125+
mirrorNodeEvmProperties.setModularizedTrafficPercent(0.0);
124126
}
125127

126128
genesisRecordFile =

hedera-mirror-web3/src/test/java/com/hedera/mirror/web3/service/ContractCallServiceTest.java

+12
Original file line numberDiff line numberDiff line change
@@ -1157,10 +1157,22 @@ void transferToNonExistingContract() {
11571157
void testDirectTrafficThroughTransactionExecutionService() {
11581158
MirrorNodeEvmProperties spyEvmProperties = spy(mirrorNodeEvmProperties);
11591159

1160+
when(spyEvmProperties.isModularizedServices()).thenReturn(true);
11601161
when(spyEvmProperties.getModularizedTrafficPercent()).thenReturn(1.0);
11611162
assertThat(spyEvmProperties.directTrafficThroughTransactionExecutionService())
11621163
.isTrue();
11631164

1165+
when(spyEvmProperties.isModularizedServices()).thenReturn(true);
1166+
when(spyEvmProperties.getModularizedTrafficPercent()).thenReturn(0.0);
1167+
assertThat(spyEvmProperties.directTrafficThroughTransactionExecutionService())
1168+
.isFalse();
1169+
1170+
when(spyEvmProperties.isModularizedServices()).thenReturn(false);
1171+
when(spyEvmProperties.getModularizedTrafficPercent()).thenReturn(1.0);
1172+
assertThat(spyEvmProperties.directTrafficThroughTransactionExecutionService())
1173+
.isFalse();
1174+
1175+
when(spyEvmProperties.isModularizedServices()).thenReturn(false);
11641176
when(spyEvmProperties.getModularizedTrafficPercent()).thenReturn(0.0);
11651177
assertThat(spyEvmProperties.directTrafficThroughTransactionExecutionService())
11661178
.isFalse();

0 commit comments

Comments
 (0)