For the complete documentation index, see llms.txt. This page is also available as Markdown.

get__stats_nodes_minute

GET /stats/nodes/minute

Get Node Statistics

Get minute-level statistics for node operations

Parameters

Name
In
Type
Required
Description

bucketId

query

string

false

Bucket ID filter

TypeScript Client Library

// Using the Flashgate TypeScript client
import { FlashgateClient } from '@flashgate/client';

const client = new FlashgateClient({
  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

Example responses

200 Response

Responses

Status
Meaning
Description
Schema

200

Node statistics

Inline

Response Schema

Status Code 200

Name
Type
Required
Restrictions
Description

ยป success

boolean

false

none

none

ยป data

[object]

false

none

none

Last updated

Was this helpful?