getRecentPerformanceSamples RPC Metodu

Ters slot sırasında yakın zamandaki performans örneklerinin bir listesini döndürür. Performans örnekleri her 60 saniyede bir alınır ve belirli bir zaman aralığında gerçekleşen işlem ve slot sayısını içerir.

$ curl https://api.devnet.solana.com -s -X \
> POST -H "Content-Type: application/json" -d '
> {
> "jsonrpc": "2.0",
> "id": 1,
> "method": "getRecentPerformanceSamples",
> "params": [
> 2
> ]
> }
> '

params

usizeoptional

Döndürülecek örnek sayısı (maksimum 720)

result

Response
{
"jsonrpc": "2.0",
"result": [
{
"slot": 348125,
"numTransactions": 126,
"numSlots": 126,
"samplePeriodSecs": 60,
"numNonVoteTransactions": 1
},
{
"slot": 347999,
"numTransactions": 126,
"numSlots": 126,
"samplePeriodSecs": 60,
"numNonVoteTransactions": 1
}
],
"id": 1
}
array

Aşağıdakileri içeren performans örneği nesnelerinin bir dizisi:

Is this page helpful?