Skip to content
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

feat: framework for sys events #25602

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
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
154 changes: 154 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"influxdb3_load_generator",
"influxdb3_process",
"influxdb3_server",
"influxdb3_sys_events",
"influxdb3_telemetry",
"influxdb3_test_helpers",
"influxdb3_wal",
Expand Down Expand Up @@ -49,6 +50,7 @@ assert_cmd = "2.0.14"
async-trait = "0.1"
backtrace = "0.3"
base64 = "0.22.0"
bevy_reflect = "0.14.2"
bimap = "0.6.3"
byteorder = "1.3.4"
bytes = "1.8"
Expand Down
2 changes: 2 additions & 0 deletions influxdb3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ influxdb3_server = { path = "../influxdb3_server" }
influxdb3_wal = { path = "../influxdb3_wal" }
influxdb3_write = { path = "../influxdb3_write" }
influxdb3_telemetry = { path = "../influxdb3_telemetry" }
influxdb3_sys_events = { path = "../influxdb3_sys_events" }

# Crates.io dependencies
anyhow.workspace = true
Expand All @@ -57,6 +58,7 @@ uuid.workspace = true

# Optional Dependencies
console-subscriber = { version = "0.1.10", optional = true, features = ["parking_lot"] }
bevy_reflect = "0.14.2"

[features]
default = ["jemalloc_replacing_malloc", "azure", "gcp", "aws"]
Expand Down
28 changes: 28 additions & 0 deletions influxdb3_sys_events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[package]
name = "influxdb3_sys_events"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true


[dependencies]
# core crates
iox_time.workspace = true
iox_system_tables.workspace = true

# local deps
influxdb3_server = { path = "../influxdb3_server" }

# crates.io deps
arrow.workspace = true
arrow-array.workspace = true
async-trait.workspace = true
bevy_reflect.workspace = true
chrono.workspace = true
dashmap.workspace = true
datafusion.workspace = true

[dev-dependencies]
test-log.workspace = true
proptest.workspace = true
Loading