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(events): Add internal event id to event metadata #21074

Merged
merged 16 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
313 changes: 165 additions & 148 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,13 @@ proptest-derive = { version = "0.4.0" }
serde_json = { version = "1.0.125", default-features = false, features = ["raw_value", "std"] }
serde = { version = "1.0.206", default-features = false, features = ["alloc", "derive", "rc"] }
toml = { version = "0.8.19", default-features = false, features = ["display", "parse"] }
uuid = { version = "1.10.0", features = ["v4", "v7", "serde"] }
vrl = { version = "0.17.0", features = ["arbitrary", "cli", "test", "test_framework"] }

[dependencies]
pin-project.workspace = true
clap.workspace = true
uuid.workspace = true
vrl.workspace = true
proptest = { workspace = true, optional = true }
proptest-derive = { workspace = true, optional = true }
Expand Down Expand Up @@ -346,7 +348,6 @@ tonic = { version = "0.10", optional = true, default-features = false, features
hickory-proto = { version = "0.24.1", default-features = false, features = ["dnssec"], optional = true }
typetag = { version = "0.2.18", default-features = false }
url = { version = "2.5.2", default-features = false, features = ["serde"] }
uuid = { version = "1", default-features = false, features = ["serde", "v4"] }
warp = { version = "0.3.7", default-features = false }
zstd = { version = "0.13.0", default-features = false }
arr_macro = { version = "0.2.1" }
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ indoc = { version = "2", default-features = false }
tokio = { version = "1", features = ["test-util"] }
similar-asserts = "1.5.0"
vector-core = { path = "../vector-core", default-features = false, features = ["vrl", "test"] }
uuid = { version = "1", default-features = false, features = ["serde", "v4"] }
uuid.workspace = true
rstest = "0.22.0"
vrl.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0000.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0001.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0002.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0003.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0004.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0005.json

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

2 changes: 1 addition & 1 deletion lib/codecs/tests/data/native_encoding/json/0006.json

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

Loading
Loading