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

Upstream dogstatsd refactors #617

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3e649a9
feat: upstream dogstatsd from datadog lambda extension
alexgallotta Aug 21, 2024
05db1a9
add: stand alone dogstatsd binary as example
alexgallotta Aug 21, 2024
e5b521e
fix: imports
alexgallotta Aug 21, 2024
ab0e9c4
fix: make test utils public
alexgallotta Aug 21, 2024
f3b1704
fix: more test utils public
alexgallotta Aug 21, 2024
052bb82
fix: make entry public
alexgallotta Aug 21, 2024
76d9271
fix: clippy
alexgallotta Aug 21, 2024
0000905
fix: make test config public
alexgallotta Aug 21, 2024
83aba19
Revert "fix: make test config public"
alexgallotta Aug 21, 2024
8067e56
fix: make fields public for tests and assertions
alexgallotta Aug 21, 2024
d30d0c0
refactor: remove unused error
alexgallotta Aug 22, 2024
9af1e66
refactor: do one step parsing
alexgallotta Aug 22, 2024
5e97fee
fix: duplicate dependencies from conflicts
alexgallotta Sep 9, 2024
4e161f8
refactor: use type for sorted tags and ustr
alexgallotta Sep 9, 2024
8353b39
fix: statsd parsing and tests
alexgallotta Sep 9, 2024
9c3699e
format: format and clippy
alexgallotta Sep 9, 2024
85b6466
fix: use only minimum regexp
alexgallotta Sep 9, 2024
5a3ef45
fix: increase to 10k context size, lost in refactors/moving
alexgallotta Sep 9, 2024
ca0f587
refactor: update license
alexgallotta Sep 10, 2024
e7aec0e
fix: remove custom toolchain
alexgallotta Sep 12, 2024
d8904cc
style: fix comment too long not picked up by rustfmt
alexgallotta Sep 12, 2024
967e7e2
fix: restore previous cargo.lock
alexgallotta Sep 13, 2024
d873333
fix: missing error dep
alexgallotta Sep 18, 2024
1d71e1c
fix: use empty tags
alexgallotta Sep 18, 2024
1fb05d6
fix: update license
alexgallotta Sep 18, 2024
84236bc
fix: nightly rustc 1.83 format
alexgallotta Sep 18, 2024
6c20cbb
fix: clippy
alexgallotta Sep 18, 2024
f65418e
fix: do not use a map, support duplicate tag values
alexgallotta Sep 19, 2024
7677972
Merge branch 'main' into upstream-dogstatsd-refactors
alexgallotta Sep 19, 2024
9fb7b5e
Merge branch 'main' into upstream-dogstatsd-refactors
alexgallotta Sep 20, 2024
54ebc07
Merge branch 'main' into upstream-dogstatsd-refactors
taegyunkim Sep 20, 2024
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
5 changes: 3 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion LICENSE-3rdparty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22213,7 +22213,7 @@ third_party_libraries:

END OF TERMS AND CONDITIONS
- package_name: regex
package_version: 1.10.4
package_version: 1.10.6
repository: https://github.com/rust-lang/regex
license: MIT OR Apache-2.0
licenses:
Expand Down
1 change: 1 addition & 0 deletions dogstatsd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ thiserror = { version = "1.0.58", default-features = false }
tokio = { version = "1.37.0", default-features = false, features = ["macros", "rt-multi-thread"] }
tokio-util = { version = "0.7.11", default-features = false }
tracing = { version = "0.1.40", default-features = false }
regex = { version = "1.10.6", default-features = false }

[dev-dependencies]
mockito = { version = "1.5.0", default-features = false }
Expand Down
Loading
Loading