spacetimedb-sdk 2.2.0

A Rust SDK for clients to interface with SpacetimeDB
Documentation
use once_cell::sync::Lazy;
use prometheus::{HistogramVec, IntCounterVec};
use spacetimedb_metrics::metrics_group;

metrics_group!(
    pub struct ClientMetrics {
        #[name = spacetime_client_received_total]
        #[help = "The cumulative number of received websocket messages"]
        #[labels(db: Box<str>)]
        pub websocket_received: IntCounterVec,

        #[name = spacetime_client_received_msg_size]
        #[help = "The size of received websocket messages"]
        #[labels(db: Box<str>)]
        pub websocket_received_msg_size: HistogramVec,
    }
);

pub static CLIENT_METRICS: Lazy<ClientMetrics> = Lazy::new(ClientMetrics::new);