-
Notifications
You must be signed in to change notification settings - Fork 5
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
chore: Cleanup and fixes #45
Conversation
collector.config.yaml
Outdated
@@ -11,11 +11,24 @@ receivers: | |||
processors: | |||
batch: | |||
|
|||
tail_sampling: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we use the filter approach instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the trace state policy is fine but maybe @mathnogueira has a different opinion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the filter preprocessor is faster and doesn't require as much memory as this one. I mean, it's ok to use this here, but the filter would be better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just changed it to use filter instead, seems to be working correctly!
jaeger: | ||
endpoint: ${JAEGER_ENDPOINT} | ||
otlp: | ||
endpoint: jaeger:4317 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to hardcode this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah its all dockerized
This PR adds a bunch of cleanup changes to make it easier to test, including upgrading the OTEL dependencies
Changes
Fixes
Checklist