[package]
edition = "2024"
name = "aether-telemetry"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenTelemetry support for Aether GenAI calls"
readme = false
license = "MIT"
repository = "https://github.com/contextbridge/aether"
[package.metadata.dist]
dist = false
[lib]
name = "aether_telemetry"
path = "src/lib.rs"
[[test]]
name = "observer_tests"
path = "tests/observer_tests.rs"
[[test]]
name = "otlp_collector_tests"
path = "tests/otlp_collector_tests.rs"
[[test]]
name = "runtime_tests"
path = "tests/runtime_tests.rs"
[dependencies.aether-core]
version = "0.6.21"
package = "aether-agent-core"
[dependencies.llm]
version = "0.7.19"
package = "aether-llm"
[dependencies.opentelemetry]
version = "0.32.0"
features = [
"trace",
"metrics",
]
default-features = false
[dependencies.opentelemetry-otlp]
version = "0.32.0"
features = [
"trace",
"metrics",
"http-proto",
"reqwest-client",
]
default-features = false
[dependencies.opentelemetry-semantic-conventions]
version = "0.32.1"
features = ["semconv_experimental"]
[dependencies.opentelemetry_sdk]
version = "0.32.0"
features = [
"trace",
"metrics",
"rt-tokio",
"experimental_trace_batch_span_processor_with_async_runtime",
"experimental_metrics_periodicreader_with_async_runtime",
]
default-features = false
[dependencies.reqwest]
version = "^0.13.4"
features = [
"json",
"query",
"rustls",
"http2",
"stream",
]
default-features = false
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies.aether-core]
version = "0.6.21"
features = ["testing"]
package = "aether-agent-core"
[dev-dependencies.axum]
version = "0.8.9"
[dev-dependencies.opentelemetry-proto]
version = "0.32.0"
features = [
"gen-tonic-messages",
"trace",
"metrics",
]
default-features = false
[dev-dependencies.opentelemetry_sdk]
version = "0.32.0"
features = [
"trace",
"metrics",
"rt-tokio",
"testing",
]
default-features = false
[dev-dependencies.prost]
version = "0.14"
[dev-dependencies.tokio]
version = "^1.52.3"
features = [
"full",
"test-util",
]
[lints.clippy]
absolute_paths = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
pub_underscore_fields = "allow"
return_self_not_must_use = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1