b09ac57597
* draft of client data collection * refactor gateway stats collection to fit client stats collection in same common crate * moved client stats event and reporter to common crate * basic os reporting * add stats reporting address in sdk * integrate stats scaffolding changes * remove tokio spawn to potentially accomodate wasm32 * fmt * fix typo * add client_stats_id * unify stats reporting * avoid shutdown handle drop * add client_type to stats reporting * better way to build statsReportingconfig * disarm shutdown on sink * remove sink reporter and env dev-dependency * cherrypick from jon/send-packet-stats * uncoditionally start controller + licensing * improve ClientStatsReport serialization * better time handling * reintroduce proper local reporting * Let task wait for shutdown when exiting * Log tweak --------- Co-authored-by: jmwample <jmwample@users.noreply.github.com> Co-authored-by: Jon Häggblad <jon.haggblad@gmail.com>
27 lines
777 B
TOML
27 lines
777 B
TOML
# Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-statistics-common"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
sysinfo = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio = { workspace = true }
|
|
si-scale = { workspace = true }
|
|
|
|
nym-sphinx = { path = "../nymsphinx" }
|
|
nym-credentials-interface = { path = "../credentials-interface" }
|
|
nym-metrics = { path = "../nym-metrics" }
|
|
nym-task = { path = "../task" }
|