get_recent_performance_samples
Retrieve recent Solana blockchain performance samples in reverse slot order, with a customizable limit up to 720 samples. Useful for monitoring and analyzing network performance.
Instructions
Returns a list of recent performance samples, in reverse slot order.
Args: limit (Optional[int], optional): Number of samples to return (maximum 720). Defaults to None.
Returns: str: Performance samples in the format "Performance samples: {samples}"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
}
},
"title": "get_recent_performance_samplesArguments",
"type": "object"
}