Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
5354ed8
added bytes_limiting policy type
portertech Sep 4, 2025
e3a70a3
fixed test context
portertech Sep 5, 2025
0eabb42
optimize calc trace size
portertech Sep 5, 2025
7395580
changelog entry
portertech Sep 5, 2025
100dc78
removed debug logging
portertech Sep 5, 2025
60491a2
Merge branch 'main' into bytes_limiting
portertech Sep 5, 2025
9035ebf
kb -> bytes, precision
portertech Sep 5, 2025
01aa675
use golang.org/x/time/rate
portertech Sep 5, 2025
136a7e6
use ptrace proto marshaler to determine trace size
portertech Sep 5, 2025
47f648e
updated changelog entry
portertech Sep 5, 2025
5227b30
go mod tidy
portertech Sep 5, 2025
8b14194
lint fixes
portertech Sep 5, 2025
7c8585c
Merge branch 'main' into bytes_limiting
portertech Sep 8, 2025
95349b6
import time/rate
portertech Sep 8, 2025
0923183
make gotidy
portertech Sep 8, 2025
2a5adb1
Merge branch 'main' into bytes_limiting
portertech Sep 8, 2025
20259f9
Merge branch 'main' into bytes_limiting
portertech Sep 9, 2025
7c75171
make crosslink, fixed GH conflict resolution commit
portertech Sep 9, 2025
97fb2ed
Merge branch 'main' into bytes_limiting
portertech Sep 10, 2025
8ac0184
Update processor/tailsamplingprocessor/internal/sampling/bytes_limiti…
portertech Sep 26, 2025
910d490
Update processor/tailsamplingprocessor/config.go
portertech Sep 26, 2025
99b06f7
use samplingpolicy pkg types
portertech Oct 11, 2025
d52e900
Merge branch 'main' into bytes_limiting
portertech Oct 11, 2025
44f421d
fixed processor benchmark
portertech Oct 11, 2025
6d9bb67
fixed changelog component
portertech Oct 11, 2025
9dd8ae1
the component is now processor/tail_sampling
portertech Oct 11, 2025
2a9d8a7
comment indentation lint error
portertech Oct 11, 2025
70445d1
deleted test artifact
portertech Oct 14, 2025
cb2216d
revert ddog x/time changes
portertech Oct 14, 2025
6f584c5
missed one ddog change
portertech Oct 14, 2025
1976685
revert other ddog x/time changes
portertech Oct 14, 2025
5f048ae
Merge branch 'main' into bytes_limiting
portertech Oct 14, 2025
744f623
fixed unrelated changelog entry component
portertech Oct 14, 2025
d9d2ba3
silly github conflict editor, indentation
portertech Oct 14, 2025
b5712d7
Merge branch 'main' into bytes_limiting
portertech Oct 15, 2025
fe5bcff
Merge branch 'main' into bytes_limiting
portertech Oct 31, 2025
42389c7
Merge branch 'main' into bytes_limiting
portertech Nov 13, 2025
1141ee9
corrected gh conflict fix indentation
portertech Nov 13, 2025
8eef272
Merge branch 'main' into bytes_limiting
portertech Nov 14, 2025
1db34ab
Merge branch 'main' into bytes_limiting
portertech Nov 18, 2025
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
Prev Previous commit
Next Next commit
fixed changelog component
Signed-off-by: Sean Porter <portertech@gmail.com>
  • Loading branch information
portertech committed Oct 11, 2025
commit 6d9bb67cb1edab426acaa0797b8e83d0770b172b
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: tailsamplingprocessor
component: processor/tailsampling

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Add bytes_limiting policy type, sample based on the rate of bytes per second using a token bucket algorithm.
Expand Down
Loading