-
Notifications
You must be signed in to change notification settings - Fork 94
OpenTelemetry OTLP setup for tracing #670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
79c1bbd
e9c804d
d9509c8
ea57348
e27304a
3baea3e
a249da5
1ff9351
cc08d11
2d52cc8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: "3" | ||
|
||
environment: | ||
|
||
processes: | ||
otlp-collector: | ||
is_daemon: true | ||
command: | | ||
docker run -d --rm --name suzuka-otlp-collector -p16686:16686 -p4317:4317 -e COLLECTOR_OTLP_ENABLED=true jaegertracing/all-in-one:latest | ||
shutdown: | ||
command: | | ||
docker stop suzuka-otlp-collector | ||
suzuka-full-node: | ||
depends_on: | ||
otlp-collector: | ||
condition: process_started | ||
environment: | ||
- MOVEMENT_OTLP=http://localhost:4317 | ||
m1-da-light-node: | ||
depends_on: | ||
otlp-collector: | ||
condition: process_started | ||
environment: | ||
- MOVEMENT_OTLP=http://localhost:4317 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,7 +146,7 @@ impl LightNodeV1 { | |
Ok(verified_blobs) | ||
} | ||
|
||
#[tracing::instrument(target = "movement_timing", level = "debug")] | ||
#[tracing::instrument(target = "movement_telemetry", level = "debug")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would like to have comments on each of these explaining why they are needed to achieve a certain metric as outlined here: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure if we need all of these for telemetry. Originally they were added for perf research. |
||
async fn get_blobs_at_height(&self, height: u64) -> Result<Vec<Blob>, anyhow::Error> { | ||
let celestia_blobs = self.get_celestia_blobs_at_height(height).await?; | ||
let mut blobs = Vec::new(); | ||
|
Uh oh!
There was an error while loading. Please reload this page.