-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(new sink): add greptime log sink (#20812)
* chore: add greptime log sink * chore: add changelog * chore: fix by pr comment * chore: add new changelog * chore: add doc and modify feature greptimedb-integration-tests to greptimedb-metrics-integration-tests * chore: update changelog * chore: make clippy happy * chore: fix integration test * chore: merge greptime logs and metrics into one integration test * chore: update greptimedb sink doc and licenses * chore: add greptimedb cue * chore: update LICENSE-3rdparty.csv * chore: add authors for changelog * chore: fix changelog format issue * chore: fix greptime sink cue issue * chore: fix greptime sink cue issue * chore: update greptimedb sinks doc Co-authored-by: Stephen Wakely <[email protected]> * chore: generate greptimedb sinks doc * Update website/cue/reference/components/sinks/base/greptimedb_logs.cue Co-authored-by: Brett Blue <[email protected]> * chore: make greptimedb sinks documents more readable Co-authored-by: Brett Blue <[email protected]> * chore: update greptimedb logs sinks code doc --------- Co-authored-by: Stephen Wakely <[email protected]> Co-authored-by: Brett Blue <[email protected]>
- Loading branch information
1 parent
f371bc2
commit 35e82bd
Showing
29 changed files
with
2,236 additions
and
411 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,6 +173,9 @@ der,https://github.com/RustCrypto/formats/tree/master/der,Apache-2.0 OR MIT,Rust | |
deranged,https://github.com/jhpratt/deranged,MIT OR Apache-2.0,Jacob Pratt <[email protected]> | ||
derivative,https://github.com/mcarton/rust-derivative,MIT OR Apache-2.0,mcarton <[email protected]> | ||
derive_arbitrary,https://github.com/rust-fuzz/arbitrary,MIT OR Apache-2.0,"The Rust-Fuzz Project Developers, Nick Fitzgerald <[email protected]>, Manish Goregaokar <[email protected]>, Andre Bogus <[email protected]>, Corey Farwell <[email protected]>" | ||
derive_builder,https://github.com/colin-kiegel/rust-derive-builder,MIT OR Apache-2.0,"Colin Kiegel <[email protected]>, Pascal Hertleif <[email protected]>, Jan-Erik Rediger <[email protected]>, Ted Driggs <[email protected]>" | ||
derive_builder_core,https://github.com/colin-kiegel/rust-derive-builder,MIT OR Apache-2.0,"Colin Kiegel <[email protected]>, Pascal Hertleif <[email protected]>, Jan-Erik Rediger <[email protected]>, Ted Driggs <[email protected]>" | ||
derive_builder_macro,https://github.com/colin-kiegel/rust-derive-builder,MIT OR Apache-2.0,"Colin Kiegel <[email protected]>, Pascal Hertleif <[email protected]>, Jan-Erik Rediger <[email protected]>, Ted Driggs <[email protected]>" | ||
derive_more,https://github.com/JelteF/derive_more,MIT,Jelte Fennema <[email protected]> | ||
digest,https://github.com/RustCrypto/traits,MIT OR Apache-2.0,RustCrypto Developers | ||
dirs-next,https://github.com/xdg-rs/dirs,MIT OR Apache-2.0,The @xdg-rs members | ||
|
@@ -243,7 +246,7 @@ graphql_client,https://github.com/graphql-rust/graphql-client,Apache-2.0 OR MIT, | |
graphql_client_codegen,https://github.com/graphql-rust/graphql-client,Apache-2.0 OR MIT,Tom Houlé <[email protected]> | ||
graphql_query_derive,https://github.com/graphql-rust/graphql-client,Apache-2.0 OR MIT,Tom Houlé <[email protected]> | ||
greptime-proto,https://github.com/GreptimeTeam/greptime-proto,Apache-2.0,The greptime-proto Authors | ||
greptimedb-client,https://github.com/GreptimeTeam/greptimedb-ingester-rust,Apache-2.0,The greptimedb-client Authors | ||
greptimedb-ingester,https://github.com/GreptimeTeam/greptimedb-ingester-rust,Apache-2.0,The greptimedb-ingester Authors | ||
grok,https://github.com/daschl/grok,Apache-2.0,Michael Nitschinger <[email protected]> | ||
group,https://github.com/zkcrypto/group,MIT OR Apache-2.0,"Sean Bowe <[email protected]>, Jack Grigg <[email protected]>" | ||
h2,https://github.com/hyperium/h2,MIT,"Carl Lerche <[email protected]>, Sean McArthur <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* update greptimedb-ingester version | ||
* add a new greptimedb_logs sink | ||
* Changed the original greptime code structure to make it clearer | ||
* rename sink name from `greptimedb` to `greptimedb_metrics` | ||
|
||
authors: GreptimeTeam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.