- trade_ml.rs: Replace 3 mock data fallbacks (submit, predictions, performance) with proper error propagation. Commands now fail honestly when the API Gateway is unreachable instead of silently returning fake data. Mark 3 integration tests as #[ignore]. - monitoring_service: Add tonic-health with set_serving for MonitoringServiceServer. Enables grpc_health_probe readiness checks. - ml_training_service: Add tonic-health with set_serving for MlTrainingServiceServer. Wired into both TLS and non-TLS paths. - data_acquisition_service: Add tonic-health with set_serving for DataAcquisitionServiceServer. - ml/cuda_streams: Fix pre-existing unused variable clippy warning. All 8 services now have standard gRPC health checking enabled. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
38 lines
988 B
TOML
38 lines
988 B
TOML
[package]
|
|
name = "monitoring_service"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Monitoring Service - Prometheus-to-gRPC bridge for live training metrics"
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
tonic.workspace = true
|
|
tonic-prost.workspace = true
|
|
tonic-health.workspace = true
|
|
prost.workspace = true
|
|
prost-types.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
reqwest = { version = "0.12", features = ["rustls-tls", "json"], default-features = false }
|
|
axum.workspace = true
|
|
prometheus.workspace = true
|
|
tokio-stream.workspace = true
|
|
async-stream.workspace = true
|
|
chrono.workspace = true
|
|
common = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build.workspace = true
|
|
prost-build.workspace = true
|
|
|
|
[[bin]]
|
|
name = "monitoring_service"
|
|
path = "src/main.rs"
|