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

(otelarrowreceiver): add admission control to otlp path #35021

Merged
merged 28 commits into from
Sep 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
fb4bbe8
add admission control to otlp path
moh-osman3 Sep 5, 2024
9706583
support deprecated option + changelog + unit tests
moh-osman3 Sep 6, 2024
35d9d09
rename
moh-osman3 Sep 6, 2024
b3feccf
replace statement?
moh-osman3 Sep 6, 2024
36fc7b2
lint
moh-osman3 Sep 6, 2024
75788fd
lint
moh-osman3 Sep 6, 2024
0944757
make crosslink?
moh-osman3 Sep 6, 2024
6eeee4b
lint again
moh-osman3 Sep 6, 2024
692484f
address review feedback
moh-osman3 Sep 6, 2024
2dcdd8e
fix tests
moh-osman3 Sep 6, 2024
4e4a4ed
lint
moh-osman3 Sep 6, 2024
4202afd
add yaml
moh-osman3 Sep 6, 2024
2d26469
fix test after rebase
moh-osman3 Sep 10, 2024
d80fff4
fix test
moh-osman3 Sep 10, 2024
58c525e
change admission config level and name
moh-osman3 Sep 10, 2024
1fae410
gofmt
moh-osman3 Sep 10, 2024
57f9d56
add nil check
moh-osman3 Sep 10, 2024
c04c5bd
rebase + review feedback
moh-osman3 Sep 12, 2024
3469d9a
review feedback
moh-osman3 Sep 17, 2024
c5791ae
indent chlog?
moh-osman3 Sep 17, 2024
3a878ac
update readme link
moh-osman3 Sep 17, 2024
f5f170b
move log warning to newOtelArrowReceiver
moh-osman3 Sep 18, 2024
c748c5e
move mutation to Unmarshal
jmacd Sep 20, 2024
73217bf
Merge branch 'main' of github.com:open-telemetry/opentelemetry-collec…
jmacd Sep 20, 2024
62e8f82
tidy
jmacd Sep 20, 2024
91c1ddc
Merge branch 'main' of github.com:open-telemetry/opentelemetry-collec…
jmacd Sep 23, 2024
3510b3a
Merge branch 'main' of github.com:open-telemetry/opentelemetry-collec…
jmacd Sep 23, 2024
411d5f7
comments
jmacd Sep 24, 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
Prev Previous commit
Next Next commit
lint
  • Loading branch information
moh-osman3 committed Sep 12, 2024
commit 4e4a4eda6ee9d5051f5bf19c0f477a55d007d9d7
2 changes: 1 addition & 1 deletion receiver/otelarrowreceiver/internal/trace/otlp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func otlpReceiverOnGRPCServer(t *testing.T, tc consumer.Traces) net.Addr {
})
require.NoError(t, err)
bq := admission.NewBoundedQueue(maxBytes, maxWaiters)
r := New(zap.NewNop(),tc, obsrecv, bq)
r := New(zap.NewNop(), tc, obsrecv, bq)
// Now run it as a gRPC server
srv := grpc.NewServer()
ptraceotlp.RegisterGRPCServer(srv, r)
Expand Down