Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
GPeaky committed Oct 16, 2024
1 parent 8b7df20 commit 4d08f0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ quick_cache = "0.6"
prost-build = "0.13"
postgres-derive = "0.4"
deadpool-postgres = "0.14"
tracing-opentelemetry = "0.23.0"
tracing-opentelemetry = "0.24"
tokio = { version = "1", features = ["full"] }
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", features = ["json"] }
Expand All @@ -64,19 +64,15 @@ tracing-log = { version = "0.2", features = ["ahash"] }
tokio-stream = { version = "0.1", features = ["sync"] }
serde = { version = "1", features = ["rc", "unstable"] }
ntex = { version = "2", features = ["tokio", "openssl"] }
opentelemetry-semantic-conventions = "0.12.0"
ahash = { version = "0.8", features = ["compile-time-rng"] }
dashmap = { version = "6", features = ["inline", "raw-api"] }
refinery = { version = "0.8", features = ["tokio-postgres"] }
postgres-types = { version = "0.2", features = ["with-chrono-0_4"] }
opentelemetry = "0.22.0"
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
opentelemetry = "0.23"
opentelemetry_sdk = { version = "0.23", features = ["rt-tokio"] }
parking_lot = { version = "0.12", features = ["arc_lock", "nightly"] }
garde = { version = "0.20", features = ["derive", "email", "email-idna"] }
opentelemetry-otlp = { version = "0.15.0", features = [
"grpc-tonic",
"metrics",
] }
opentelemetry-otlp = { version = "0.16", features = ["grpc-tonic", "metrics"] }
tracing-subscriber = { version = "0.3", features = [
"parking_lot",
"env-filter",
Expand Down
1 change: 0 additions & 1 deletion crates/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ opentelemetry.workspace = true
opentelemetry_sdk.workspace = true
tracing-opentelemetry.workspace = true
opentelemetry-otlp.workspace = true
opentelemetry-semantic-conventions.workspace = true
tracing-subscriber.workspace = true
tracing-log.workspace = true
tracing.workspace = true
2 changes: 1 addition & 1 deletion crates/metrics/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn initialize_tracing_and_telemetry(
.with_trace_config(
trace::config().with_resource(Resource::new(vec![KeyValue::new(
"service.name",
"f1-telemetry-api",
"intelli-api",
)])),
)
.install_batch(Tokio)?;
Expand Down

0 comments on commit 4d08f0b

Please sign in to comment.