Skip to content

Commit

Permalink
update opentelemetry deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmncs committed Nov 3, 2022
1 parent d9e5b11 commit e31f7d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions moose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ byteorder = "~1.4"
bytes = "1"
clap = { version = "~4", features = ["derive", "env"] }
csv = "~1.1"
dashmap = "~5.1"
dashmap = "~5"
derive_more = "~0.99"
futures = "~0.3"
itertools = "~0.10"
Expand All @@ -63,8 +63,8 @@ ndarray-linalg = { version = "~0.16", features = ["openblas-system"] }
num = "~0.4"
num-traits = "~0.2"
notify = "4.0"
opentelemetry = { version = "0.17", default-features = false, features = ["trace"], optional = true }
opentelemetry-jaeger = { version = "0.16", optional = true }
opentelemetry = { version = "0.18", default-features = false, features = ["trace"], optional = true }
opentelemetry-jaeger = { version = "0.17", optional = true }
parking_lot = "~0.12"
paste = "~1.0"
petgraph = "~0.6"
Expand All @@ -81,7 +81,7 @@ toml = "0.5"
tonic = { version = "~0.8", features = ["tls"] }
tracing = { version = "~0.1", features = ["log"] }
tracing-subscriber = { version = "~0.3.16", features = ["env-filter"] }
tracing-opentelemetry = { version = "0.17", optional = true }
tracing-opentelemetry = { version = "0.18", optional = true }
nom = { version = "~7.1" }
x509-parser = "~0.14"

Expand Down
2 changes: 1 addition & 1 deletion moose/src/reindeer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub fn setup_tracing(identity: &str, service_name: &str) -> Result<(), Box<dyn s
use opentelemetry::KeyValue;
use tracing_subscriber::{prelude::*, EnvFilter};

let tracer = opentelemetry_jaeger::new_pipeline()
let tracer = opentelemetry_jaeger::new_agent_pipeline()
.with_service_name(service_name)
.with_trace_config(
Config::default().with_resource(Resource::new(vec![KeyValue::new(
Expand Down

0 comments on commit e31f7d6

Please sign in to comment.