get__stats_nodes_minute
Parameters
Name
In
Type
Required
Description
TypeScript Client Library
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({
accessToken: 'your-access-token'
});
// Get node statistics (optionally filtered by bucket)
try {
const result = await client.nodes.getStats({ bucketId: 'optional-bucket-id' });
console.log('Node statistics:', result);
} catch (error) {
console.error('Failed to retrieve node statistics:', error);
}Code Samples
Responses
Status
Meaning
Description
Schema
Response Schema
Name
Type
Required
Restrictions
Description
Last updated
Was this helpful?