admin_ethCallStatistics RPC Method

Provides capacity and performance metrics for the eth_call execution pool. This is a Monad-specific endpoint.

Parameters#

None

Result#

object - Capacity and usage statistics for the eth_call executor pool.

Code sample#

{
  "jsonrpc": "2.0",
  "method": "admin_ethCallStatistics",
  "params": [],
  "id": 1
}

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "inactiveExecutors": "980",
    "queuedRequests": "0",
    "oldestRequestAgeMs": "0",
    "averageRequestAgeMs": "0",
    "totalRequests": "1000",
    "totalErrors": "0",
    "queueRejections": "0"
  }
}
Try It