Skip to content
Draft
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
22 changes: 22 additions & 0 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ regex = "1.11.3"
regex-lite = "0.1.7"
reqwest = "0.12.23"
rmp-serde = "1.3.0"
rsyslog = { version = "0.1.5", features = ["chrono-timestamp"] }
semver = "1.0.27"
sentry = { version = "0.41.0", default-features = false, features = [
# default features, except `release-health` is disabled
Expand All @@ -180,7 +181,9 @@ sentry = { version = "0.41.0", default-features = false, features = [
] }
sentry-core = "0.41.0"
sentry-kafka-schemas = { version = "2.1.14", default-features = false }
sentry-release-parser = { version = "1.4.0", default-features = false, features = ["semver-1"] }
sentry-release-parser = { version = "1.4.0", default-features = false, features = [
"semver-1",
] }
sentry-types = "0.41.0"
sentry_protos = "0.4.2"
serde = { version = "=1.0.228", features = ["derive", "rc"] }
Expand Down
5 changes: 5 additions & 0 deletions relay-dynamic-config/src/feature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ pub enum Feature {
/// Serialized as `organizations:relay-otel-logs-endpoint`.
#[serde(rename = "organizations:relay-otel-logs-endpoint")]
OtelLogsEndpoint,
/// Enable Heroku log drain ingestion via the `/integration/heroku/logs` endpoint.
///
/// Serialized as `organizations:relay-heroku-log-drain-endpoint`.
#[serde(rename = "organizations:relay-heroku-log-drain-endpoint")]
HerokuLogDrainEndpoint,
/// Enable playstation crash dump ingestion via the `/playstation/` endpoint.
///
/// Serialized as `organizations:relay-playstation-ingestion`.
Expand Down
1 change: 1 addition & 0 deletions relay-ourlogs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ relay-event-schema = { workspace = true }
relay-otel = { workspace = true }
relay-protocol = { workspace = true }
relay-common = { workspace = true }
rsyslog = { workspace = true }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Crate doesn't seem to be adopted nor polished (e.g. docs), need to make sure it satisfies our requirements regarding panics etc.

On a first glance it seems good though.

serde = { workspace = true }
serde_json = { workspace = true }

Expand Down
Loading
Loading