getRecentPerformanceSamples RPC-Methode

Gibt eine Liste der neuesten Performance-Samples in umgekehrter Slot-Reihenfolge zurück. Performance- Samples werden alle 60 Sekunden erfasst und beinhalten die Anzahl der Transaktionen und Slots, die in einem bestimmten Zeitfenster auftreten.

$ 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

Anzahl der zurückzugebenden Samples (maximal 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

Ein Array von Performance-Sample-Objekten, die Folgendes enthalten:

Is this page helpful?