Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"crates/ourios-bench",
"crates/ourios-config",
"crates/ourios-core",
"crates/ourios-df-otel",
"crates/ourios-ingester",
"crates/ourios-miner",
"crates/ourios-parquet",
Expand Down
3 changes: 2 additions & 1 deletion THIRD-PARTY-LICENSES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies (tests, benchmarks) are excluded because they are not shipped.

| License | Crates |
| --- | --- |
| `Apache-2.0` | 336 |
| `Apache-2.0` | 337 |
| `MIT` | 72 |
| `Unicode-3.0` | 19 |
| `BSD-3-Clause` | 8 |
Expand Down Expand Up @@ -6746,6 +6746,7 @@ Used by:
- `ourios-bench` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-config` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-core` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-df-otel` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-ingester` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-miner` 0.4.0 — <https://github.com/jensholdgaard/ourios>
- `ourios-parquet` 0.4.0 — <https://github.com/jensholdgaard/ourios>
Expand Down
27 changes: 27 additions & 0 deletions crates/ourios-df-otel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[package]
name = "ourios-df-otel"
version.workspace = true
description = "Post-hoc DataFusion ExecutionPlan -> OpenTelemetry operator span tree (RFC 0040)"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
publish = false

[lib]
name = "ourios_df_otel"
path = "src/lib.rs"

[dependencies]
# Pinned to the same DataFusion 54 the rest of the workspace runs (RFC 0021).
# No `ourios-*` dep — deliberate, so this lifts cleanly to a standalone
# `datafusion-contrib` crate (RFC 0040 §3.5).
datafusion = { version = "54", default-features = false, features = ["parquet"] }
opentelemetry = { version = "0.32", default-features = false, features = ["trace"] }

[dev-dependencies]
opentelemetry_sdk = { version = "=0.32.1", default-features = false, features = ["trace", "testing"] }
chrono = { version = "0.4", default-features = false, features = ["std"] }

[lints]
workspace = true
Loading