Skip to content

Commit

Permalink
feat: framework for sys events
Browse files Browse the repository at this point in the history
closes: #25581
  • Loading branch information
praveen-influx committed Nov 29, 2024
1 parent 8e23032 commit 8227151
Show file tree
Hide file tree
Showing 5 changed files with 721 additions and 0 deletions.
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 @@ -31,6 +31,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 @@ -56,6 +57,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

0 comments on commit 8227151

Please sign in to comment.