SENTRY Statistics

Endpoint: /api/v1/stats | Performance Metrics

Statistics Overview

View real-time metrics on the collection daemon's performance and our database, including total counts, completed, failed, and pending fetches.

Our collection daemon is designed to self throttle itself to minimize impact to the RSI.com servers - with any sign of performance issues the daemon backs off. We also have engineered a tremendous amount of logic and caching to prevent direct requests when they are not needed resulting in serving data from our own databases while still maintaining a high degree of data accuracy.

Overall Totals

Total Citizens:

Total Organizations:

Total Memberships:

Queued Fetches:

Last Hour

Completed Fetches:

Failed Fetches:

Fetches Queued:

Last 24 Hours

Completed Fetches:

Failed Fetches:

Fetches Queued:

Timecharts (Last 16 Hours)

Fetches

Endpoint Details

GET /api/v1/stats

Retrieve statistics.

curl https://sentry.wildknightsquadron.com/api/v1/stats

Response (200 OK)

{
    "completed_fetches": {
        "last_hour": 10,
        "last_24_hours": 100
    },
    "failed_fetches": {
        "last_hour": 2,
        "last_24_hours": 15
    },
    "pending_fetches": {
        "last_hour": 5,
        "last_24_hours": 50
    },
    "timechart": {
        "hours": ["2025-02-24 10:00:00", "2025-02-24 11:00:00", "...", "2025-02-25 09:00:00"],
        "completed": [5, 3, "...", 10],
        "failed": [0, 1, "...", 2],
        "pending": [2, 1, "...", 5]
    },
    "totals": {
        "citizens": 5000,
        "organizations": 1000,
        "memberships": 10000,
        "queue": 10000
    }
}